:root {
    --blau-dunkel: #046f85;
    --blau-mid: #1c7cac;
    --blau-hell: #0eaece;
    --text-color: #F9F7F0;
    --second-text-color: #dbe7eb;
    --background-color: #03111a;
    --background-color2: #03111aea;
    --color-fix: #dddddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

.bg {
    width: 100%;
    object-fit: cover;
    height: calc(100vh - 80px);
    filter: brightness(0.2);
    position: relative;
    z-index: 1;
}

header {
    max-height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(0.25turn, var(--color-fix), var(--second-text-color));
}

.circle img {
    width: 150px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    font-weight: 800;
    font-size: 20px;
}

nav a {
    text-decoration: none;
    color: var(--blau-dunkel);
    padding: 0 0.15rem;
    position: relative;
    font-size: 1rem;
}

nav a:hover {
    color: var(--blau-dunkel);
}

nav a::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    background: var(--blau-dunkel);
    transition: 250ms ease-in-out;
    bottom: 0;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

.burger-menu {
    position: relative;
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu img {
    width: 30px;
    height: auto;
}

.content-section {
    display: flex;
    flex-direction: column;
    color: var(--background-color);
}

.content-section h1 {
    font-size: 2.5rem;
    text-align: center;
    padding-top: 4rem;
    z-index: 1;
    border-bottom: 2px solid var(--background-color);
}

.content-test {
    display: flex;
    width: 100%;
    padding: 50px 100px 150px;
    flex-direction: column;
    z-index: 1;
}

.content-test p a {
    text-decoration: none;
}

span {
    font-size: 2.5rem;
}

.content-test p {
    font-size: 1.5rem;
}

.footer-content {
    position: fixed;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    bottom: 0;
    width: 100%;
    height: 80px;
    color: var(--blau-dunkel);
    background-color: var(--color-fix);
    z-index: 2;
}


.footer-content a {
    text-decoration: none;
    color: var(--blau-dunkel);
    font-size: 1rem;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.icons {
    width: 26px;
}

.icons2 {
    width: 20px;
}

.copys {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.copys .c {
    width: 16px;
}

.copys h2 {
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        z-index: 1000;
        text-align: center;
        background: linear-gradient(0.25turn, var(--color-fix), var(--second-text-color));
        gap: 0;
        overflow: hidden;
    }

    nav ul li {
        padding: 20px;
    }

    .burger-menu {
        display: block;
    }

    #menuList {
        transition: all 0.5s;
    }
}

@media (max-width: 750px) {
    .content-test {
        padding: 50px 50px 150px;
    }
}

@media (max-width: 700px) {
    .content-test p {
        font-size: 1.3rem;
    }
}

@media (max-width: 500px) {
    .content-test {
        padding: 50px 20px 150px;
    }

    .content-test p {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .social-icons .icons {
        width: 20px;
    }
}

@media (max-width: 390px) {
    .content-test p {
        font-size: 1.0rem;
    }
}

@media (max-width: 350px) {
    .content-test p {
        font-size: 0.80rem;
    }
}