
/* variables */

:root {
    --max-width: 80rem;
    --header-height: 8rem;
    --orange: rgba(243, 156, 36, 0.862);
    --dark-grey: #2b2d30;
}

@media (max-width: 768px) {
    :root {
        --header-height: 6rem;
    }
}

/* fonts */

@font-face {
    font-family: 'DM Serif Display';
    src: url('/assets/fonts/DMSerifDisplay-Regular.ttf') format('truetype');
}   

@font-face {
    font-family: 'Merriweather';
    src: url('/assets/fonts/Merriweather-Regular.ttf') format('truetype');
}


/* global styles */

body {
    margin: 0;
    background-color: var(--dark-grey);
    overscroll-behavior: none;
}

p, h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', 'serif';
    margin: 0;
    color: var(--dark-grey);

}

p, button, input[type="text"], input[type="email"], input[type="number"] {
    font-family:'Merriweather', 'serif';
}

p {
    line-height: 1.5;
}



button, input[type="submit"], input[type="text"], input[type="email"], input[type="number"] {
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
    background-color: rgba(255, 255, 255, 0.5) !important;
}

section {
    width: 100vw;
    height: 100vh;
    min-height: 45rem;

}


 button.style-1 {
    font-size: 1.3rem;
    padding: 1rem 2rem;
    background-color: var(--orange);
    color: white;
    border-radius: 5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

form input[type="text"],
form input[type="email"],
form input[type="number"] {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--dark-grey);
    font-size: 1rem;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    color: var(--dark-grey);
}

form input[type="submit"] {
    font-size: 1rem;
    padding: 1rem 2rem;
    background-color: var(--dark-grey);
    color: white;
    border-radius: 5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}


h2 {
    font-size: 4rem;
}

h3 {
    font-size: 1.5rem;
}

div.divider {
    width: 40%;
    height: 1px;
    background-color: var(--dark-grey);
}

@media (max-width: 768px) {
 button.style-1 {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--orange);
    color: white;
    border-radius: 5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

    h1 {
        font-size: 3.5rem !important;
    }

    h2 {
        font-size: 2.5rem !important;
    }


    section {
        height: auto !important;
        min-height: auto;
    }
}