/*
    
## ## ## ## ##  ##              ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##  ## ## ## ## ##
##              ##              ##          ##  ##          ##  ##          ##  ## ##       ##  ##                    ##
##              ##              ##          ##  ##          ##  ##          ##  ##  ##      ##  ##                    ##
##    ## ## ##  ##              ##          ##  ## ## ## ##     ##          ##  ##    ##    ##  ## ## ## ## ##        ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##      ##  ##  ##                    ##
##          ##  ##              ##          ##  ##          ##  ##          ##  ##        ## #  ##                    ##
## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ## ## ## ## ##  ##          ##  ## ## ## ## ##        ##

/**** TEXT & ICONS ****/

/* WHITE */
h1,
hr,
.teaser i,
button,
.button,
footer a,
footer p,
footer h3,
.dropdown .menuitem a,
input[type=submit] {
    color: var(--white);
}

/* GREEN */
.form h4,
#decline,
#popup a,
#popup h3,
#selection,
.topmenu nav a,
.topmenu nav li,
.bottommenu nav a,
.menuitem a:hover {
    color: var(--green);
}

/* BLACK */
h2,
h3,
h4,
p,
li i,
#selection,
.menuitem a {
    color: var(--black);
} 

/* OTHER */
.alert i:nth-of-type(1) {
    color: green;
}

a {
    color: #af9c7e;
}

/**** ELEMENT BACKGROUND ****/

/* WHITE */
body,
#burgermenu .burger .line,
.bottommenu a:hover:not(.logo) {
    background: var(--white);    
}

/* GREY */
input,
textarea {
    background: var(--grey);
}

/* GREEN */
#title,
button,
.button,
.teaser i,
.dropdown,
input[type=submit] {
    background: var(--green);
}

#selection,
#burgermenu,
#decline {
    background: transparent;
}

/* OTHER */
#popup {
    background: #ffffff85;
}
header {
    background-color: rgba(201, 196, 190, 0.6);
}
#topfooter {
    background: #317779;
}
button:hover,
.button:hover,
input[type="submit"]:hover {
    background: #af9c7e;
}

/**** OUTLINE ****/
.teaser,
#decline,
input:focus,
textarea:focus {
    outline: 1px solid var(--green);
}
.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 {
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

/**** 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/Roboto/Roboto-VariableFont_wdth\,wght.ttf);
}
* {
    font-family: 'Text';
    line-height: 1.5;
}

/**** ROOT ****/
:root {
    --white: #FFFFFF;
    --grey: #999999;
    --green: #1e7071; 
    --black: #000000;
}