/* General Styles */
body {
    background-image: linear-gradient(transparent 3%, rgba(19,17,17, 0.399)), url();
    font-family: sans-serif;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* Navigation Styles */
nav {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0 5%;
    height: 90px;
    background-color: #b1afaf;
    background: linear-gradient(90deg, rgb(247, 247, 247) 0%, rgba(78, 108, 133, 0.559) 50%, rgba(247,247,247,1) 100%);
}

nav .logo {
    float: left;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: rgb(96, 96, 96);
}

nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav .links li {
    list-style: none;
}

nav .links a {
    display: block;
    padding: 1em;
    font-size: 16px;
    font-weight: bold;
    color: #434646ce;
    text-decoration: none;
}

#nav-toggle {
    position: absolute;
    top: -100px;
}

nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .3s ease-in-out;
}

@media screen and (max-width: 768px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(169, 165, 165, 0.747);
        overflow: hidden;
        transition: all .5s ease-in-out;
    }
    nav .links a {
        font-size: 20px;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked ~ .links {
        bottom: 0;
    }
    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}

/* Container Styles */
.container, .haupt {
    background-color: rgba(245, 245, 245, 0.5);
    border: 2px solid rgb(185, 175, 175);
    padding: 10px;
    width: 1200px;
    max-width: 90%;
    margin: 110px auto 15px auto;
    border-radius: 15px;
    box-shadow: 5px 5px 5px black;
}

.container h1 + p {
    font-weight: 300;
}

.container img {
    width: auto;
    margin: 0px auto;
    max-width: 100%;
    display: block;
    border-radius: 5px;
}

.script_id {
    color: #545A03;
}

/* Footer Styles */
.footer-container {
    font-family: sans-serif;
    width: 800px;
    max-width: 90%;
    margin: 0% auto;
    text-align: center;
    font-size: 0.8em;
}

.footer-container a {
    color: rgb(243, 243, 243);
    margin-left: 7px;
    margin-right: 7px;
    text-decoration: none;
}

/* Form Styles */
form {
    height: 575px;
    width: 500px;
    padding: 40px;
    border-radius: 8px;
    background-color: #222831;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

h1 {
    color: rgb(202, 211, 230);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 30px;
    background-size: 100% 4px;
    background-position: bottom;
    background-repeat: no-repeat;
    line-height: 60px;
}

.inputs_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input {
    height: 64px;
    width: 240px;
    margin: 15px;
    padding: 0px 25px;
    border-radius: 10px;
    border: none;
    background-color: #373e49;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.212);
    color: white;
    font-size: 20px;
    transition: 0.2s;
}

input:hover {
    background-color: #47505f;
}

input:focus {
    outline: none;
    background-color: #47505f;
    width: 265px;
}

input::placeholder {
    color: rgb(249, 249, 249);
}

button {
    height: 64px;
    width: 140px;
    border-radius: 1000px;
    border: none;
    color: rgb(83, 112, 174);
    font-family: sans-serif;
    font-size: 22px;
    transition: 0.2s;
}

button:hover {
    width: 200px;
}

button:focus {
    outline: none;
    width: 200px;
}

@media screen and (max-width: 768px) {
    form {
        height: 60%;
        width: 60%;
        justify-content: center;
    }
    .inputs_container {
        margin: 80px;
    }
    h1 {
        font-size: 32px;
    }
}