* {
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s;
    cursor: default;
}

::selection {
    background-color: rgba(83, 186, 255, 0.5);
}

#blackwall {
    background-color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
}


#img_logo {
	position: static;
	margin-left: 0%;
	height: 100px;
	width: 100px; 
	box-shadow: none;
}
	
@media (prefers-color-scheme: dark) {
	#img_logo {
		filter: invert();
	}
}

/* announcement */

.img_announcement img {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    box-shadow: none;
/* 
    animation: none; */
}

.text_announcement {
    position: relative;

    right: auto;
    font-weight: lighter;
    letter-spacing: 10px;
    line-height: 75px;
    font-weight: 100;
}

/* headline */

.headline {
    color: rgb(40, 40, 40);
    font-weight: 120;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 10px;
    line-height: 50px;
    margin: 0px;
    margin-top: 20px;
}

.headline_script {
    font-family: brown;
    font-size: 100px;
    font-weight: 1;
    line-height: 180px;
    letter-spacing: 5px;
    
}

.text_block {
    text-align: justify;
    margin-left: 10%;
    margin-right: 10%;
    
}

.div_container {
    display: table;
    margin: 0px;
    width: 100%;
    margin-bottom: 100px;

    box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.3);
}

.spacer {
    height: 50px;
}

/* image Container */

.div_image_container {
    width: 100%;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.div_image_container img {
    position: relative;
    width: 15%;
    height: auto;
    margin-left: 13.75%;
    margin-right: 0;
    box-shadow: 0px 0px 20spx black;
}

a.div_image_container:hover ~ .div_image_container img {
    filter: brightness(1.2);
}

/*Text*/

h1 { font-size: 30px; line-height: 50px;}
h2 { font-size: 20px; line-height: 30px;}
h3 { font-size: 15px; line-height: 25px;}
h4 { font-size: 12px; line-height: 20px;}

h1, h2, h3, h4, h5, h6 {
    margin: 25px;
    text-align: center;
    user-select: none;
}

a {
    color: rgb(83, 186, 255);
    text-decoration: none;
}

a:hover {
    color: rgba(83, 186, 255, 0.6);
    text-decoration: underline;
}

/*Img*/

img {
    width: 40%;
    
    margin-top: 30px;
    margin-bottom: 30px;

    margin-left: 30%;
    
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.75);
    user-select: none;
}

/*button*/

button {
    text-align: center;
    padding: 30px;
    margin: 0;
    color: black;
    text-decoration: none;
    border-radius: 0;
    background-color: rgb(240, 240, 240);
    border: 1px solid rgb(221, 221, 221);
    user-select: none;
    
}

button:hover {
    background-color: rgb(221, 221, 221);
}

/* Cookies */

.cookiebanner {
    position: fixed;
    border: 2px solid rgb(221, 221, 221);
    background-color: white;
    width: 95%;
    bottom: 2px;
    margin-bottom: calc(env(safe-area-inset-bottom));
    left: 2.5%;

    opacity: 1;
    visibility: hidden;

    transition: 0s;
    transition: opacity 0.3s;
    user-select: none;
}

.cookiebanner button {
    position: relative;
    margin: 20px;
}

input {
    height: 50px;
    padding: 20px;
    margin: 10px;
    margin-bottom: 50px;
    cursor: text;
    font-size: 20px;
}

textarea {
    margin: 10px;
    padding: 20px;
    cursor: text;
    font-size: 20px;
}

input.newsletter {
    width: 50%;
}

select, select option {
    height: 50px;
    padding-left: 20px;
    margin: 10px;
    margin-bottom: 50px;
    font-size: 20px;
}

/* window */

.div_layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;

    background-color: rgb(255, 255, 255);
    opacity: 0.65;
}

.div_window {
    position: fixed;
    background-color: white;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
}

/*nav-bar*/

.div_navBar {
    margin-top: 10px;
    display: inline-block;
    padding: 0;
    border: 1px solid rgb(221, 221, 221);
    user-select: none;
}

.div_navBar a {
    display: block;
    text-align: center;
    padding: 30px;
    margin: 0;
    color: black;
    text-decoration: none;
    float: left;

    transition: 0s;
}

.div_navBar a:hover, .div_menuitem:hover {
    background-color: rgb(221, 221, 221);
}

.liNow {
    background-color: rgb(240, 240, 240);
}

/* Theme */

@media (prefers-color-scheme: dark) {
    ::placeholder {
        color: rgb(180, 180, 180);
    }

    body {
        background-color: black;
    }

    #blackwall {
        background-color: rgb(0, 0, 0);
    }

    .headline {
        color: rgb(215, 215, 215);
    }

    h1, h2, h3, h4, h5, h6 {
        color: white;
    }

    .div_container {
        box-shadow: 0px 20px 20px rgba(255, 255, 255, 0.15);
    }

    /* img */

    img {
        box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.5);
    }

    .div_image_container img {
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    }

    /*button*/

    button {
        text-align: center;
        padding: 30px;
        margin: 0;
        color: white;
        text-decoration: none;
        border-radius: 0;
        background-color: rgb(40, 40, 40);
        border: 1px solid rgb(40, 40, 40);
    }

    button:hover {
        background-color: rgb(10, 10, 10);
    }

    input, textarea {
        background-color: black;
        border: 2px solid rgb(200, 200, 200);
        color: white;
    }

    /* Cookies */

    .cookiebanner {
        background-color: black;
        border: 2px solid rgb(40, 40, 40);
    }

    /* window */

    .div_layer { 
        background-color: rgb(0, 0, 0);
        opacity: 0.65;
    }
    
    .div_window {
        position: fixed;
        background-color: rgb(0, 0, 0);
        box-shadow: 0px 0px 50px rgba(255, 255, 255, 0.5);
    }

    /*nav-bar*/

    .div_navBar {
        border: 1px solid rgb(40, 40, 40);
    }

    .div_navBar a {
        color: white;
    }

    .div_navBar a:hover, .div_menuitem:hover {
        background-color: rgb(30, 30, 30);
    }

    .liNow {
        background-color: rgb(40, 40, 40);
    }
}

/* Device-Size */

@media (max-width: 750px) {
    h1 { font-size: 20px; line-height: 30px; }
    h2 { font-size: 15px; line-height: 25px; } 
    h3 { font-size: 10px; line-height: 15px; }

    button {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .headline {
        margin: 5px;
        margin-top: 20px;
        letter-spacing: 5px;
        font-size: 20px;
    }

    .headline_script {
        font-size: 80px;
        line-height: 100px;
    }

    .text_block {
        margin-left: 2%;
        margin-right: 2%;
    }

    .text_announcement {
        line-height: 40px;
    }

    input.newsletter {
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 5%;
        margin-right: 5%;
    }

    button.newsletter {
        position: static;
        margin-top: 20px;
        margin-left: auto;
        margin-bottom: 20px;
        align-items: center;
    }

    /* Images */

    img {
        width: 80%;
        margin-left: 10%;
    }

    .img_content {
        width: 90%;
        margin-left: 5%;
    }

    .div_image_container img {
        position: static;
        width: 40%;
        margin-left: 30%;
    }

    /* window */

    .div_layer {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
    
        background-color: rgb(255, 255, 255);
        opacity: 0.65;
    }
    
    .div_window {
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

    /* Navbar */

    .div_navBar {
        width: 90%;
        height: auto;
        margin: 0;
        height: auto;
        padding: 0;
    }

    .div_navBar a {
        margin: 0;
        padding: 0;
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
    }
} 

/* extra classes */

.anim_fading {
    animation: fading_up;
    animation-duration: 2s;
}

.anim_opacity {
    animation-name: anim_opacity;
    animation-duration: 2s;
}

/*Fonts*/

@font-face {
    font-family: brown;
    src: url(/resources/fonts/BrownhillScript.ttf);
    font-style: normal;
}

/* animations */

@keyframes anim_opacity {
    0% { opacity: 0;}
    30% { opacity: 0;}
    100% { opacity: 1;}
}

@keyframes fading_up {
    0% { position: relative; opacity: 0; margin-top: 100px; }
    30% { position: relative; opacity: 0; margin-top: 100px; }
}