: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;
}

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;
    gap: 40px;
}

.content-section h1 {
    font-size: 2.5rem;
    text-align: center;
    padding-top: 4rem;
    border-bottom: 2px solid var(--background-color);
}

.content-row-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 50px;
}

.reverse {
    flex-direction: row-reverse;
}

.left, .right {
    flex: 1;
}

.left img, .right img {
    max-width: 100%;
    height: auto;
}

.line {
    font-size: 2rem;
    margin-bottom: 10px;
}

.right p, .left p {
    font-size: 20px;
    margin-bottom: 10px;
}

button {
    color: var(--background-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid var(--blau-hell);
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
}

button:hover {
    border: 2px solid var(--blau-dunkel);
    background-color: var(--blau-dunkel);
    color: var(--text-color);
}

.footer-content {
    height: 80px;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    align-items: center;
    background-color: var(--color-fix);
    margin-top: 20px;
}

.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: 1412px) {
    .content-row-overlay {
        display: flex;
        flex-direction: column;
    }
}

@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: 500px) {
    .footer-content {
        flex-direction: column;
    }

    .social-icons .icons {
        width: 20px;
    }
}

@media (max-width: 390px) {
    .content-row-overlay {
        padding: 10px 25px;
    }

    .line {
        font-size: 1.5rem;
    }

    .button2 {
        display: flex;
        justify-content: center;
    }
}