body{
    background-color: var(--white-color);
    background-size: auto;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;
}

header {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 200px;
    background: var(--blue-color);
    background-attachment: fixed;
    background: url("../images/noise.png"), linear-gradient(180deg, var(--blue-color) 61.53%, #FFF 100%);
    max-height: 1080px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    margin: 5% 10%;
    padding: 5px;
}

.navbar-links {
    flex-direction: row;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 50px;
    flex-wrap: wrap;
    list-style-type: none;
}

.navbar-link {
    color: var(--white-color);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    margin: 5px 5px;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.navbar-link {
    display: inline-block;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.navbar-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.logo {
    height: 60px;
    width: 60px;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.logo:hover {
    transform: scale(110%) rotate(5deg);
}

.presentation {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 250px 0px;
    gap: -10px;
    color: white;
    align-self: stretch;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 250px 0px;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#presentation-title {
    font-family: koliko;
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

#presentation-subtitle {
    font-family: Outfit;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

@media screen and (max-width: 1250px) {
    .navbar-links {
        display: none;
    }

    #presentation-title {
        font-size: 5rem;
    }

    #presentation-subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    #presentation-title {
        font-size: 3rem;
    }

    #presentation-subtitle {
        font-size: 1.25rem;
    }
}