@media screen and (max-width: 789px){
    .contactes{
        grid-template-columns: repeat(1, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
    }

    .contactes a{
        margin: 10px;
    }
}

.contact{
    background-image: url("../img/menuiseri3.jpg");
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.content h1{
    text-decoration: underline;
    color: white;
    text-shadow: 1.5px 1.5px 1.5px #000000;
}

.contactes{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contactes a{
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    border-radius: 10px;
    padding: 17px;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    transition: 0.5s;
    display: inline-block;
}

.contactes a:hover{
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.85);
}

.contactes a span {
    display: inline-block;
    transition: transform 0.5s;
}

.contactes a:hover span {
    transform: scale(1.05);
}