/*
    Stile computer
*/
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 80px;
}
.logo > img {
    max-width: 500px;
    width: 150%;
    height: auto;
}
.social {
    display: flex;
    align-items: center;
    gap: 25px;
}
.icona-instagram {
    width: 75px;
    height: 75px;
    display: block;
}
.testo-social {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 15px;
}
/* 
    Stile telefono
*/
@media screen and (max-width: 600px) {
    .logo {
        margin-top: 40px;
        gap: 15px;
    }
    .logo > img {
        max-width: 250px;
    }
    .social {
        gap: 15px;
    }
    .icona-instagram {
        width: 50px;
        height: 50px;
    }
    .testo-social {
        font-size: 16px;
    }
}