.contact-options{
    height: 90%;
}

.contact-options > h2{
    margin-left: 10px;
    text-align: center;
    margin-top: 20px;
}

.contact-options > p{
    text-align: center;
    margin-left: 10px;
    font-size: 25px;
    color: white;
}

.main-options{
    display: flex;
    flex-direction: row;
    height: 450px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.main-options > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 500px;
    max-width: 98%;
    padding: 20px;
    cursor: pointer;
    border-radius: 10px;
    background-color: rgb(35, 35, 35);
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-options > div > img{
    margin-bottom: 10px;
    width: 80px;
    filter: invert(100%);
}

.main-options > div > h2{
    text-align: center;
    font-size: 40px;
}

.main-options > div:hover{
    transform: scale(1.02);
}

.main-options > div:active{
    transform: scale(0.98);
}