/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
hr,
.prev, 
.next,
button,
.button,
.teaser i,
.teaser p,
.teaser h3,
#about h2,
#about h3,
#about p,
.menuitem .button,
input[type=submit]{
    color: var(--white);
}

/* GREY */
.fa-brands {
    color: var(--grey)
}

/* DARK GREY */
a,
h1,
h2,
h3,
h4,
p,
li i,
.form h4,
#decline,
#popup h3,
#selection,
.menuitem a,
#topfooter p,
#topfooter a,
#selection {
    color: var(--dark-grey);
}

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
body,
.bottommenu nav,
.bottommenu,
.dropdown {
    background: var(--white);    
}

/* GREY */
input,
.teaser,
textarea {
    background: var(--grey);
}

/* BLACK */
button,
.button,
.teaser i,
input[type=submit],
#burgermenu .burger .line {
    background: var(--black);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* OTHER */
#popup {
    background: #ffffff85;
}
#about {
    background-color: rgb(113, 113, 113);
}

/**** OUTLINE ****/
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--black);
}
.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;
}

.dropdown {
    box-shadow: 0 7px 11px 0 rgba(0,0,0,.2);
}

/**** 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: 'Title';
    src: url(../font/Oswald/Oswald-VariableFont_wght.ttf);
}
* {
    font-family: 'Text';
    line-height: normal;
}
h1,
h2,
h3,
h4{
    font-family: 'Title';
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #bbb9c2;
    --dark-grey: #323335;
    --black: #000000;
}