.content{
    
    display: flex;
    flex-direction: row;
    justify-content: center;
}


.contactBox{
    width: 45%;
    height: 600px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    margin-right: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 21px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 10rem;
    margin-right: 15px;
    margin-left: 15px;
}

.contactHeader{
    font-size: 30px;
    color: #B13636;
    margin-bottom: 5px;
    margin-top: 5px;
}

.contactLinks{
    text-decoration: none;
    color: black;
}

.contactLinks:hover{
    cursor: pointer;
    color: #1D4272;
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 920px) {

    .content{
        flex-direction: column;
    }
.contactBox{
    width: 90%;
    margin-top: 5rem;
    margin-bottom: 5rem;

}

.navbar {
    display: flex;
    justify-content: space-around;
}

.menu-items {
    display: none;
}

.menuu {
    display: block;
}

.rmenuitems {
    display: block;
    margin-top: 0.1rem;
}
}


@media only screen and (max-width: 450px) {

    .contactBox{
        width: 99%;
    }
   
}


