/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
#about h2,
#about p,
.first-menuitem .button,
hr,
.prev, 
.next,
.teaser i,
button,
.button,
input[type=submit],
#bottomfooter p,
#bottomfooter a {
    color: var(--white);
}

/* BLACK */
#topfooter .black-style a,
#topfooter h3,
h2,
h3,
h4,
p,
li i,
#selection{
    color: var(--black);
} 

/* GREY two */
h2,
h3,
p {
    color: var(--grey-two);
} 

/* MINT */
#about .button,
h1,
.menuitem a,
a,
.form h4,
#decline,
#popup h3,
#selection,
.menuitem a:hover,
#teaserbox p,
#teaserbox h3{
    color: var(--mint);
} 

/* OTHER */
#topfooter .text-color p,
#topfooter .text-color a{
    color: #C3C3C3;
}
#topfooter p,
#topfooter a {
    color: rgb(75, 74, 74);
}
.alert i:nth-of-type(1) {
    color: green;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
#about .button,
#topfooter,
body,
.dropdown,
#teaserbox .box {
    background: var(--white);    
}
/* Black */
#burgermenu .burger .line {
    background: var(--black);
}

/* GREY */
input,
.teaser,
textarea,
#teaserbox{
    background: var(--grey);
}


#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* MINT */
#about,
#about::before,
#bottomfooter,
input[type=submit],
.teaser i,
button,
.button,
#teaserbox .button,
#teaserbox{
    background: var(--mint);
} 

/* OTHER */
.first-menuitem .button {
    background: red;
}
#popup {
    background: #ffffff85;
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--mint);
}
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
a:focus-visible {
    outline: .2rem solid var(--black);
}

/**** BOX SHADOW ****/
#popup {
    -webkit-backdrop-filter: blur(3rem);
    backdrop-filter: blur(3rem);
    box-shadow: var(--black) 0 0 10rem -4rem;
}

/**** TEXT DECORATION ****/
.menuitem a:hover {
    text-decoration: none;
}
#popup a,
#bottomfooter a {
    text-decoration: underline;
}

/**** TRANSITIONS ****/
nav,
#more,
.all i,
.dropdown,
.menuitem a,
.bottommenu nav,
#selection span {
    transition: all linear 100ms;
}

#burgermenu {
    transition: all linear 200ms;
}

/**** FONTS ****/
@font-face {
    font-family: 'Text';
    src: url(../font/Lato/Lato-Regular.ttf);
}
@font-face {
    font-family: 'bold';
    src: url(../font/Lato/Lato-Bold.ttf);
}
@font-face {
    font-family: 'light';
    src: url(../font/Lato/Lato-Light.ttf);
}
* {
    font-family: 'Text';
    line-height: 1.5;
}
#teaserbox p{
    font-family: 'light';
    line-height: 1.5; 
}
#teaserbox .box h3,
.bottommenu a {
    font-family: 'bold';
    line-height: 1.5; 
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #F0F0F0;
    --black: #000000;
    --mint: rgb(0, 104, 113);
    --grey-two: rgb(87, 87, 87);
}