h1 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Krona One', sans-serif;
    color: #ECE9D8;
    margin: 0;
    margin-bottom: 50px;
}

h2 {
    color: #ECE9D8;
    font-size: 2rem;
    text-align: center;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 75px auto;
    padding: 5rem;
    width: 85%;
    background-color: #1A1A1A;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-text-img {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 45px;
    margin: 2rem 0;
}

.about-text-img p {
    line-height: 150%;
    color: #ECE9D8;
    font-size: 1.1rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.about-text-img img {
    max-height: 500px;
    border-radius: 10px;
}

.about-me-txt-img{
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 35px;
}

.about-me-txt-img p {
    color: #ECE9D8;
    font-size: 1.1rem;
line-height: 140%;
}

.about-me img {
    width: 300px;
    border-radius: 10px;
}

/* Media Queries */
@media (width < 1100px) {
    .about-text-img img {
        max-height: 400px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.25;
    }
}