﻿/* ====== About Me Main ====== */

.aboutme-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
    width: 90%;
    margin: 2% auto;
    background-color: #faf9f8;
}

main p {
    font-size: calc(20px + 0.5vw);
    text-align: center;
    background-color: #faf9f8;
}

.projects-list-container {
    display: flex;
    flex-direction: column;
}

    .projects-list-container h2 {
        font-size: calc(28px + 0.5vw);
        text-align: left;
    }

    .projects-list-container ul {
        list-style: none;
        list-style-type: disc;
        margin-left: 5%;
        font-size: calc(20px + 0.5vw);
    }

        .projects-list-container ul li {
            margin-top: 1rem;
        }