@import "/styles/main.css";

#contact-title {
    text-align: center;
    /* font-weight: bold; */
    font-size: 40px;

    margin-top: 80px;
    margin-bottom: 24.8px;
}

#contact-choices {
    text-align: center;
    display: flex;
    justify-content: center;
}

.contact-choice {
    background-color: rgb(20, 20, 20);
    display: inline-block;

    margin-left: 10px;
    margin-right: 10px;
    
    width: 25.5%;
}

.contact-choice-logo {
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-choice-title {
    margin-top: 0px;
    margin-bottom: 10px;

    font-size: 25px;
    font-weight: bold;
}

.contact-choice-content {
    text-align: left;
    margin: 0px 20px 0px 20px;
}

.contact-choice-address {
    font-size: 20px;
    font-weight: bold;

    margin-top: 10px;
    margin-bottom: 20px;
}

/* mobile device stuff */
@media screen and (max-width: 880px) {
    #contact-title {
        font-size: 32px;
    }

    #contact-choices {
        flex-wrap: wrap;
    }

    .contact-choice {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-choice-title {
        font-size: 20px;
    }

    .contact-choice-content {
        font-size: 16px;
    }
}