#contact-container {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url("/assets/grass.png");
    background-size: 48px;
    display: flex;
    flex-direction: row;
    gap: 25px;
}

#contact-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: center;
}

#contact-header {
    border-width: 3px;
    border-color: white;
    border-style: solid;
    border-radius: 4px;
    box-shadow: 0px 0px 8px #777777;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    background-color: #ec7e2f;
    padding: 4px 12px;
    width: 100%;
    text-align: center;
}

#contact-header span {
    border-radius: 4px;
    color: white;
    font-size: 32px;
    text-shadow: 1px 1px 4px #222;
}

.mail-link {
    border-width: 3px;
    border-color: white;
    border-style: solid;
    border-radius: 4px;
    box-shadow: 0px 0px 8px #777777;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    background-color: #ec7e2f;
    padding: 4px 12px;
    width: max-content;
}

#contact-wrapper a {
    border-radius: 4px;
    color: white;
    font-size: 24px;
    text-shadow: 1px 1px 4px #222;
    text-decoration: none;
}

#info-wrapper {

    background-color: #24a387;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 0px 8px #777777;
    height: 100%;
}

#info-wrapper span {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    border-radius: 4px;
    color: white;
    font-size: 24px;
    padding: 4px 12px;
    text-shadow: 1px 1px 4px #222;
}

#contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 8px 8px;
    background-color: white;
    border-radius: 4px;
}

#contact-info p {
    margin: 8px;
    text-wrap: balance;
    font-size: 20px;
    color: #222;
    line-height: 24px;
}

@media (max-width: 800px) {
    #contact-container {
        flex-direction: column;
    }
}
