body {
    background-color: rgb(235, 193, 164);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.container {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    padding: 1rem;
    border-radius: 25px;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   
    border-top: 3px dotted rgb(235, 193, 164);
    padding-bottom: 24px;
}

.contact-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.contact-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
}

.contact-option p {
    padding-right: 6px;
}

img {
    margin-bottom: 0px;
    padding-bottom: 2px;
    width: 20;
    height: 20;
}

@media (max-width: 730px) {
    .container {
        max-width: 98vw;
    }

    img {
        width: 100%;
        height: auto;
    }
}