html{
    overflow: scroll;
}

body{
    height: 100vh;
    background: linear-gradient(142deg, rgb(32 91 93) 0%, #487f81 52%, rgba(255,255,255,1) 100%);
}
textarea {
    resize: none;
  }
p{
    font-size: 4vw;
}


/*FORM MAIL*/
#form_mail{
    background-color: #063739;
    display: flex;
    flex-direction: column;
    row-gap: 1vw;
    width: 85vw;
    padding: 2vw;
    border-radius: 3vw;
    color: white;
}

#form_mail input, #form_mail textarea, #form_mail label, #form_mail p{
    font-size: 3vw;
}
#form_mail input, #form_mail textarea{
    border-radius: 1vw;
    border: 1px solid #387173;
    padding: 1vw;
    font-size: 3vw;
}

input[type="submit"]{
    background-color: #719899;
    color: white;
    font-weight: 700;
}

#error{
    color: #ff0000d4;
}

/* CONTATTI */
#contatti{
    display: flex;
    flex-direction: column;
    padding-top: 20vw;
    margin-left: 5vw;
}

#contatti #container_contatti{
    display: flex;
    flex-direction: column;
    row-gap: 5vw;
    margin-top: 4vw;
}

#contatti #container_contatti div{
    display: flex;
    flex-direction: row;
}

.contatto{
    display: flex;
    align-items: center;
    column-gap: 3vw;
}
.contatto img{
    width: 10vw;
}
.contatto p{
    color: white;
}


/* SEGUIMI ANCHE */
#seguimi_anche{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vw;
    column-gap: 4vw;
}

#seguimi_anche div:first-child{
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif !important;
    background-color: #005758;
    width: -webkit-fill-available;
    text-align: center;
    padding: 2vw 4vw;
    border-radius: 0;
    color: white;
    font-weight: 700;
}

#seguimi_anche div:nth-child(2){
    width: 25vw;
    display: flex;
    justify-content: space-around;
    margin-top: 4vw;
}


#seguimi_anche img{
    width: 10vw;
}