body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    background-color: #FBFAEE;
    font-family: Arial;
}

/*Introduction section*/
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background-color: #A589D1;
    padding: 4vw 4vw;
    flex-wrap: wrap;
}

.selfie {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 40rem;
}

.selfie img {
    height: auto;
    width: 115%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-desc {
    flex: 1 1 40rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #222222;
    text-align: left;
}

.about-title {
    font-family: "Aesthetic Moment";
    font-size: 4rem;
    margin: 0;
}

.about-blurb {
    font-family: "Poppins";
    font-size: 2rem;
    margin: 0;
}

.about-content {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

.title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: "Heavitas";
}

/*Skills section*/
.skills {
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skills-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skill img {
    width: auto;
    height: 7rem;
    margin-bottom: 1rem;
}

.caption {
    font-family: "Poppins";
    font-size: 1.25rem;
}

/*Covers section*/
#covers {
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.covers {
    margin: 0 auto;
    padding: 1rem;
    max-width: 1800px;
}

.covers a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
    transition: transform 0.2s, color 0.2s;
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.2s, outline 0.2s;
}

.covers a:hover .thumbnail {
    transform: scale(1.025);
    outline: 0.4rem solid #BCA7DD;
    outline-offset: 0;
}

.cover-title {
    font-family: "Poppins";
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    /* Stack logo and nav items on smaller screens */
    nav {
        flex-direction: row; /* Keep the logo on the left */
        justify-content: space-between;
        text-align: center;
        padding: 1rem;
    }

    /* Reduce logo size for mobile */
    .homepage {
        max-width: 50px;
    }

    .navigation ul {
        gap: 0.8rem;
    }

    .navigation ul li a {
        font-size: 1rem;
    }

    .about {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .selfie {
        width: 100%;
        justify-content: center;
    }

    .selfie img {
        max-width: 80%;
    }

    .about-desc {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-blurb {
        font-size: 1.5rem;
    }

    .filmings {
        padding: 1rem;
    }

    .covers {
        padding: 0.5rem;
    }

    .covers .row {
        margin-bottom: 0;
    }

    .covers a {
        margin-bottom: 1rem;
    }

    .cover-title {
        font-size: 1.2rem;
    }
}