@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    font-weight: 550;
    font-style: normal;
    letter-spacing: -0.015em;
}

.navbar {
    padding: 15px;
    border-bottom: 2px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

li {
    padding: 0 20px;
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    font-weight: 450;
}

li a:hover {
    box-shadow: inset 0 -1px 0 rgb(40, 99, 229);
}

.name {
    margin-left: 10px;
    font-family: "DM Sans", sans-serif;
    font-weight: 550;
    font-size: 1.5rem;
    font-style: normal;
    letter-spacing: -0.015em;
}

section {
    display: flex;
    justify-content: center;
    padding: 50px;
}

@media (min-width: 600px) {
    div {
        width: 50vw;
    }

    .navbar {
        display: flex;
    }

    .navbar li {
        display: block;
    }

    .navbar a {
        display: block;
    }
}

@media (max-width: 599px) {
    div {
        width: 75vw;
    }
}

#intro {
    font-size: 1.75rem;
    font-weight: 600;
}

#intro-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
}

#full-stack-developer {
    font-size: 1.75rem;
    font-weight: 600;
    border-bottom: 2px solid #f1f1f1;
    padding-top: 2.5rem;
}

.full-stack-developer-section {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.full-stack-developer-section div p {
    font-size: 1.0rem;
    font-weight: 400;
    padding-top: 0.5rem;
}

#div-title {
   font-size: 1.1rem;
   font-weight: 600;
   text-decoration: underline;
}

#links {
    padding-top: 0.5rem;
    display: flex;
    gap: 20px;
}

#links a {
    color: rgb(69, 69, 69);
}

#education {
    padding-top: 2.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    border-bottom: 2px solid #f1f1f1;
}

.education-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.education-section div p {
    font-size: 1.0rem;
    font-weight: 400;
    padding-top: 0.5rem;
}

#projects {
    font-size: 1.75rem;
    font-weight: 600;
    border-bottom: 2px solid #f1f1f1;
    padding-top: 1.5rem;
}

.projects-section {
    padding-top: 1.5rem;    
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
}

.projects-section div p {
    font-size: 1.0rem;
    font-weight: 400;
    padding-top: 0.5rem;
}