@font-face {
    font-family: 'Neue Einstellung';
    src: url('./assets/fonts/Hanken_Design_Co_Neue_Einstellung_Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Einstellung';
    src: url('./assets/fonts/Hanken_Design_Co_Neue_Einstellung_Black.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Einstellung';
    src: url('./assets/fonts/Hanken_Design_Co_Neue_Einstellung_Light.otf') format('opentype');
    font-weight: lighter;
    font-style: normal;
}


body::-webkit-scrollbar {
    width: 10px;
    height: 8px;

}
 
body::-webkit-scrollbar-track {
    background-color: var(--gray-dark1);
    /* background: linear-gradient(-45deg, var(--blue-primary), var(--green-primary)); */
}
 
body::-webkit-scrollbar-thumb {
    background-color: var(--blue-light1);
    
}


:root {
    --black-primary: #333333;
    --black-light1: #5C5C5C;
    --black-light2: #999999;
    --black-dark1: #1F1F1F;
    --black-dark2: #141414;

    --blue-primary: #4978FF;
    --blue-light1: #7094FF;
    --blue-light2: #ADC2FF;
    --blue-dark1: #3366FF;
    --blue-dark2: #1F57FF;

    --gray-primary: #F2F2F2;
    --gray-light1: #FBFBFB;
    --gray-light2: #FFFFFF;
    --gray-dark1: #EBEBEB;
    --gray-dark2: #D6D6D6;

    --red-primary: #FF4447;
    --red-light1: #FF7073;
    --red-light2: #FF999B;
    --red-dark1: #FF1F22;
    --red-dark2: #F50004;

    --green-primary: #0FC47A;
    --green-light1: #1BEE96;
    --green-light2: #79F6C2;
    --green-dark1: #0DAB69;
    --green-dark2: #0B985D;

    --yellow-primary: #FFAD4C;
    --yellow-light1: #FFBF70;
    --yellow-light2: #FFD199;
    --yellow-dark1: #FFA333;
    --yellow-dark2: #FF910A;
    
}


/* INTERACTIONS */

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    text-transform: uppercase;
    border-radius: 4px;
    box-sizing: border-box;
}


a {
    color: var(--blue-primary);
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    color: var(--blue-dark2);
}

.btn {
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
    background-color: var(--blue-primary);
    color: var(--gray-primary);
    width: fit-content;
}


.btn:hover {
    background-color: var(--blue-dark2);
    color: var(--gray-primary);
    transition: 0.2s;
}


.btn-border {
    border: 1px solid var(--blue-primary);
    background-color: transparent;
    color: var(--blue-primary);
}

.btn-border:hover {
    background-color: var(--blue-primary);
    color: var(--gray-primary);
    transition: 0.2s;
}


.btn-border-white {
    border: 1px solid var(--gray-primary);
    background-color: transparent;
    color: var(--gray-primary);
}

.btn-border-white:hover {
    background-color: var(--gray-primary);
    border: 1px solid var(--gray-primary);;
    color: var(--blue-primary);
    transition: 0.2s;
}


.btn-white {
    border: 1px solid var(--blue-primary);
    background-color: var(--gray-primary);
    color: var(--blue-primary);
}

.btn-white:hover {
    background-color: var(--gray-dark1);
    color: var(--blue-primary);
    transition: 0.2s;
}



textarea {
    border: none;
    overflow: auto;
    outline: none;
    font-family: 'Roboto', serif;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    min-height: 120px;

    resize: none; /*remove the resize handle on the bottom right*/

    
}

textarea:focus {
    border: 1px solid var(--blue-light2);
}

.text-field {
    background-color: #e4ebff;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    line-height: 28px;
}

.text-field::placeholder {
    color: var(--blue-light1);
    opacity: 1;
}



.text-field:active, .text-field:focus {
    box-shadow:0px 0px 0px 1px var(--blue-light2) inset;
    border: 1px solid var(--blue-light2);
    outline: none;
}



/* TEXTS */


.gradient-text {
    text-transform: uppercase;
    background: -webkit-linear-gradient(-45deg,var(--blue-primary), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.white-title {
    text-transform: uppercase;
    color: var(--gray-primary);
}


.white-text {
    color: var(--gray-primary);
}



.large-text {
    font-size: 3.8em;
    line-height: 1.1em;
} 


h1 {
    width: fit-content;
    margin: 0;
    font-size: 2.8em;
}


h2 {
    text-transform: uppercase;
    width: fit-content;
    margin: 0;
    font-size: 2.6em;
    
}


h4 {
    text-transform: uppercase;
    width: fit-content;
    margin: 0;
    font-size: 1.2em;
}



p {
    font-size: 1.5em;
    line-height: 1.4em;
    margin: 32px 0;
}


br {
    font-size: 24%;
}








/* MEDIUM-LARGE */

@media only screen and (max-width: 1450px) {


    .large-text {
        font-size: 3.0em;
        
    } 

    h1 {
        font-size: 2.1em;
    }
    
    
    h2 {
        font-size: 1.8em;
    }
    
    
    p {
        font-size: 1.1em;
        line-height: 1.4em;
    }
    
    

}


/* MOBILE-LARGE */

@media only screen and (max-width: 800px) {

    .large-text {
        font-size: 2.5em;  
    } 

    h1 {
        font-size: 2.1em;
    }
    
    
    h2 {
        font-size: 1.4em;
    }
    
    
    p {
        font-size: 1.1em;
    }
    
    

}


/* MOBILE */

@media only screen and (max-width: 500px) {

    .large-text {
        font-size: 2.0em;
        
    } 


    h1 {
        font-size: 1.3em;
    }
    
    
    h2 {
        font-size: 1.2em;
    }
    
    
    p {
        font-size: 1.1em;
    }


}



/* MOBILE-SMALL */

@media only screen and (max-width: 350px) {

    .large-text {
        font-size: 1.7em;
        
    } 


    h1 {
        font-size: 1.3em;
    }
    
    
    h2 {
        font-size: 1.0em;
    }
    
    
    p {
        font-size: 1.1em;
    }


}
