body {
    font-family: sans-serif;
    font-size: 20px;
}

h4 {
    font-size: 30px;
}

@media (min-width: 992px) {
    body {
        font-size: 20px;
    }
}

.navbar {
    background-color: rgba(0, 0, 0, 0.05);
}

.profile-image {
    height: 200px;
    width: 200px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .profile-image {
        width: 175px;
    }
}

.about-description {
    line-height: 30px;
}

#about p {
    font-size: 20px;
}

@media (max-width: 576px) {
    #about p {
        font-size: 18px;
    }
}

.skills::-webkit-scrollbar-thumb {
    height: 8px;
}
@media (min-width: 992px) {
    .skills::-webkit-scrollbar {
        background: rgb(255, 255, 255);
    }
}

@media (min-width: 992px) {
    .projects-link {
        text-decoration: none;
    }

    .projects-link:hover {
        color: orangered;
        text-decoration: underline orangered;
    }
}

.projects-link {
    color: black;
    text-decoration: underline black;
}
    
.contact-info li a {
    color: black;
    text-decoration: none;
}

.contact-info li a:hover {
    text-decoration: underline orangered;
    color: orangered;
}

#back-to-top {
    color: black;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .mobile-dropdown-border-item {
        border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 992px) {
    .skills {
        overflow-x: auto;
    }
}

section {
    scroll-margin-top: 50px;
}

#skills {
    scroll-margin-top: 50px;
}

.projectCard img {
    width: 75vw;
    margin: 0 auto 3rem;
}

@media (min-width: 992px) {
    .projectCard {
        display: flex;
    }

    .articleText {
        width: 50%;
    }

    .projectCard img {
        width: 100%;
        padding: 1rem;
    }
}

.projectCard, .projectCard img {
    border-radius: 30px;
}
