.contact-form-container {
    background-color: var(--footer-color);
    border-radius: 1rem;
    box-shadow: 4px 8px 8px hsl(0deg 0% 0% / 0.2);
    margin: 0 auto 0.5rem;
    padding: 1rem;

    border-color: var(--gray-color);
    border-width: 1px;
    border-style: solid;
}

.contact-mailto {
    font-size: 2rem;
    font-family: var(--terminal-font), monospace;
    text-align: center;
}

/* xs screen */
@media only screen and (max-width: 768px) {
    /* intro text */
    .contact-mailto {
        font-size: 1.5rem;
    }
}