/*css-document*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');

:root {
    --primary-background: #090909;
    --secondary-background: #191919;
    --accent-color: #89cff0;
    --text-color: #F0F8FF;
    --text: poppins;
    --ueberschrift: Anton;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: poppins;
}

body {
    background-color: var(--primary-background);
    width: 100%;
    margin-left: 0px;
}

nav {
    background-color: var(--secondary-background);
    z-index: 1;
    margin-top: -100px;
    width: 100%;
    height: 100px;
    position: fixed;
}

nav img {
    width: auto;
    height: 80%;
    padding: 10px 20px;
    position: absolute;
}

nav div a {
    text-decoration: none;
    text-align: center;
    color: var(--text-color);
    font-size: 20px;
    margin: 0 50px;
}

nav div a:hover {
    color: var(--accent-color);
    border-bottom: solid var(--accent-color);
    transition-duration: 200ms;
    border-width: 2px;
}

nav div {
    padding-top: 35px;
    padding-left: 340px;
}




.footer {
    color: var(--text-color);
    height: 250px;
    width: 100%;
}

#kontakt {
    display: flex;
    padding: 20px;
}

#kontakt div {
    margin: 0 150px;
}

#kontakt h4 {
    font-size: 17px;
}

#kontakt img {
    width: 20px;
    height: auto;

}

#kontakt img:hover {
    background-color: var(--accent-color);
    border-radius: 2px;
    transition-duration: 100ms;
}

.footer a h5 {
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
}

.footer a h5:hover {
    color: var(--accent-color);
}



@media(max-width: 1420px) {



nav div {
    padding-top: 90px;
    padding-left: 270px;
}

nav div a {
    font-size: 50px;
    margin: 0 10px;
}

nav {
    height: 250px;
}




.footer {
    height: 800px;
    margin-bottom: 200px;
}

#kontakt {
    display: block;
    padding: 20px;
}

#kontakt h4 {
    font-size: 40px;
}

#kontakt h5 {
    font-size: 35px;
}

#kontakt img {
    width: 60px;
    margin-right: 20px;
    height: auto;

}

#kontakt img:hover {
    background-color: var(--accent-color);
    border-radius: 2px;
    transition-duration: 100ms;
}

.footer a h5 {
    font-size: 40px;
    text-align: left;
    margin-left: 170px;
}
}