﻿.contactWrapper {
    height: 100vh;
    display: grid;
    place-content: center;
    justify-items: start;
    margin: 0 20px;
    text-align: center;
}

    .contactWrapper h1 {
        font-size: 34px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .contactWrapper h3 {
        font-size: 18px;
        font-weight: normal;
        padding-bottom: 8px;
        margin: 0;
    }

    .contactWrapper a {
        color: #1fa2f1;
        text-decoration: none;
    }

        .contactWrapper a:hover {
            text-decoration: underline; 
        }

@media (max-width: 400px) {
    .contactWrapper h3 {
        font-size: 16px;
    }
}
