html {
    background-color: #333333;
}

.contactContainer {
    position: relative;
    background: aliceblue;
    margin-left: -8px;
    margin-right: -8px;
    margin-top: 3%;
}

.contactTitle {
    font-family: "Source Serif Pro Semibold";
    font-size: 3em; /* Adjust font size as needed */
    margin-bottom: 4%;
}

.contactP {
    font-family: "Source Serif Pro";
    font-size: 1.5em; /* Adjust font size as needed */
    padding-left: 2%;
    padding-bottom: 2%;
}

.contactP1 {
    font-family: "Source Serif Pro";
    font-size: 1.5em; /* Adjust font size as needed */
    padding-left: 2%;
    padding-bottom: 5px;
    margin-top: 4%;
}

.contactIconContainer {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 2%;
    box-sizing: border-box;
}

.contactIcon {
    width: 4vw;
    height: auto;
    display: block;
}

.iconP {
    margin-top: -0.1%;
    font-family: "Source Serif Pro";
}

.contactIconContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contactHref {
    color: white;
}

@media (max-width: 600px) {
    .contactTitle {
        font-family: "Source Serif Pro Semibold";
        font-size: 2.5em;

    }

    .contactP {
        font-family: "Source Serif Pro";
        font-size: 1.4em;
        padding-left: 1%;
        margin-top: 4%;
        padding-bottom: 1%;
    }

    .contactIcon {
        width: 10vw;
        height: auto;
        display: block;
    }
}