section{
    padding-bottom: 10%;
}

#contactCard{
    background-color: #FCFBDF;
    border-radius: 10px;
    text-align: center;
    padding: 5%;
    box-shadow: rgb(180, 180, 180) 0px 0px 5px 1px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#contactCardTitle{
    font-size: 1em;
    padding-bottom: 2%;
    font-family: 'Lobster Two', cursive;
}

.contactCardDescription{
    font-size: 0.8em;
    padding: 3% 0;
}

.telephones{
    font-size: 0.8em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-bottom: 4%;
    text-align: center;
}

.telephones a:link, .telephones a:visited, .telephones a:active{
    text-decoration: none;
    color: rgb(61, 61, 245);
    font-weight: bold;
}

.telephoneIcon{
    width: 15px;
    padding-right: 2%;
}

#maps{
    box-shadow: black 0px 0px 5px;
    margin-top: 10%;
    height: 250px;
}

/*MEDIAS QUERIES*/

@media (min-width: 600px) {

    .centerContainer{
        width: 60%;
    }

    #contactCardTitle{
        font-size: 1.7em;
    }

    .contactCardDescription{
        font-size: 1em;
    }

    .telephones{
        padding-bottom: 2%;
    }

    .telephoneIcon{
        width: 20px;
    }

    #maps{
        height: 500px;
    }

}