#contactPageCard a{
    border: .1rem solid #DEE2E6;
    border-radius: .35rem;
    text-decoration: none;
    padding: .5rem 1.2rem;
    width: 30%;
    text-align: center;
    margin-bottom: 1rem;
    color: black;
    font-weight: 500;
}

#contactPageCard a:hover {
    border-color: #007bff;
    color: #007bff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#contactPageCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
    background-color: white;
    padding: 2rem 0 2rem 0;
    border-radius: .35rem;
}

#contactPageCard h3 {
    text-align: center;
}

@media (max-width: 650px) { 
    #contactPageCard {
        padding: .5rem .25rem;
        margin-top: 0;
    }

    #contactPageCard a {
        width: 70%;
        font-size: .7rem;
        background-color: rgb(245, 243, 243);
        border: none;
    }

    #contactPageCard h3 {
        font-size: .75rem;
        margin-bottom: 1.5rem;
    }
}