body {
    background: #fff;
    background-image: url("../media/background.webp");
    font-family: "Poppins", sans-serif;
    font-size: 2.4vh;
    color: #363636;
    border: 11px inset #363636;
    margin: 0;
    padding: 68px 120px 25px;
}

h1,
h2 {
    font-size: calc(40px + (100 - 40) * ((100vw - 300px) / (1920 - 300)));
    letter-spacing: 0.02em;
    font-weight: 600;
    margin: 15px 0;
}

h3 {
    font-size: calc(30px + (60 - 30) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 600;
}

a {
    color: #363636;
    text-decoration: none;
}

a:hover,
button:hover {
    cursor: none !important;
}

nav {
    display: flex;
    justify-content: space-between;
}

nav ul {
    list-style: none;
    text-transform: uppercase;
    font-size: 1.8vh;
    letter-spacing: 0.04em;
}

nav li {
    display: inline-block;
    margin: 0 40px;
}

nav li a::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #363636;
    display: none;
    border-radius: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
}

nav li a:hover {
    font-weight: 800;
}

nav li a:hover::after,
nav li a:active::after {
    display: block;
}

section {
    margin-bottom: 3rem;
}


footer {
    position: relative;
    bottom: 0;
    text-align: center;
    margin-top: 10vh;
}

/* RESPONSIVE  */

@media (max-width: 1040px) {
    .description {
        margin-left: 30%;
    }

    #about .about-description {
        flex-direction: column;
    }

    .me {
        width: 80%;
        object-fit: cover;
        margin: auto;
        height: 65vh;
    }

    .about-description h3 {
        width: 100%;
        margin-bottom: 0;
    }

    #contact {
        flex-direction: column;
    }

    #contact p {
        margin-left: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    body {
        border: 5px inset #363636;
        padding: 20px 25px 15px;
    }

    .description {
        margin-left: 20%;
    }

    .logo {
        width: 48px;
    }

    nav li {
        margin: 0 14px;
    }

    .links {
        margin-top: 35px;
    }

    .link-project {
        margin: 50px 0;
    }

    .me {
        height: 40vh;
    }

    .about-description h3 {
        margin-left: 0;
    }
}
