.card {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    width: 70%;
    margin: 5vw auto;
    padding: 0;
}
.social {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    width: 100%;
    margin: 0 auto;

}
.social a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    flex-grow: 1;
    font-family: 'Aboreto', sans-serif;
    margin: 2vw auto;
    width: 100%;
    height: 4vw;
    text-decoration: underline;
    border: 1px solid #323232;
    background-color: #323232;
    color: white;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.social a:first-child {
    margin-right: 1vw;
}
.social a:last-child {
    margin-left: 1vw;
}

.social a:hover {
    background-color: #fff;
    color: #323232;
}

.condoglianza {
    position: relative;
    box-sizing: border-box;
    margin: 2vw auto;
    background-color: #e2e2e2;
    border: 1px solid #323232;
    margin: 1vw auto;
    padding: 2vw;
}

.condoglianza .titolo p {
    font-weight: 500;
    margin-bottom: 1vw;
}
.condoglianza span {
    float: inline-end;
    font-weight: 200;
}

.condoglianze {
    display: block;
    width: 70%;
    margin: 4vw auto;
}
.condoglianza form {
    position: absolute;
    width: 15vw;
    text-align: right;
    top:0;
    right: -3.7vw;
}
.alert {
    position: fixed; /* Cambia da absolute a fixed */
    top: 50%; /* Centra verticalmente */
    left: 50%; /* Centra orizzontalmente */
    transform: translate(-50%, -50%); /* Sposta l'elemento indietro del 50% della sua larghezza e altezza */
    width: 40vw;
    padding: 5vw;
    text-align: center;
    background-color: #323232;
    color: white;
    cursor: pointer;
}
.alert p {
    font-size: 1.8vw;
}
@media screen and (max-width: 600px) {
    .card {
        width: 90%;
    }
    .social {
        flex-direction: column;
    }
    .social a {
        height: 10vw;
        margin: 2vw auto;
    }
    .social a:first-child {
        margin-right: 0;
    }
    .social a:last-child {
        margin-left: 0;
    }
    .message {
        margin-top: 5vw;
    }
    .condoglianza {
        margin: 5vw auto;
        margin: 4vw auto;
        padding: 3vw;
    }
    .condoglianza .titolo p {
        margin-bottom: 3vw;
    }
    .condoglianze {
        width: 90%;
        margin: 6vw auto;
    }
}