#MainContents{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

#contactNoteByCEO{
    background-color: var(--black);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    pointer-events: none;
}
.ceoletter{
    width: 100%;
    padding-top: 50px;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.letter{
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    color: var(--grey);
}
.letterhead p{
    font-family: "Playwrite US Modern", serif;
    font-size: 2rem;
    line-height: 2rem;
    color: var(--white);
    font-weight: 200;
}
.letternotes p{
    font-family: "Playwrite US Modern", serif;
    font-size: 1rem;
    color: var(--grey);
    font-weight: 200;
}


#ContactDetails{
    background-color: var(--black);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 10px;
}

.contactways{
    width: 100%;
    max-width: 1200px;
    padding: 50px;
    border-radius: 30px;
    background-color: var(--darkbg);
    border: 1px solid var(--darkstroke);
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
    overflow: hidden;
}
.contactthrough{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}
.connectionlogo{
    height: 64px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.connecticon{
    scale: 4;
    fill: var(--primary-pink);
}
.connectiontext{
    font-family: "Quicksand", serif;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 300;
}

@media (max-width: 600px) {
    .letter{
        gap: 30px;
    }
    .letterhead p{
        font-size: 1.6rem;
        line-height: 1.6rem;
    }
    .letternotes p{
        font-size: 0.8rem;
    }

    .contactways{
        padding: 30px;
        gap: 30px;
    }
    .connectionlogo{
        height: 48px;
        width: 48px;
    }
    .connecticon{
        scale: 3;
    }
    .connectiontext{
        font-size: 1rem;
        line-height: 1rem;
    }
}