@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
*{margin:0px; padding:0px; font-family: "EB Garamond", serif; text-decoration: none;}
body{min-height: 100vh;}
.container{min-height: 100vh;
    background-image: url(images/Sfondo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1000px;
    margin:auto;
    padding: 100px 0px;
    background-position: top center;
}
.content{
    margin:auto 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header img{
    margin:0px auto 30px;
    max-width:250px;
    width: 80%;
}
.testo{
   display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.testo h3{
    text-align: center;
    font-size:24px;
    font-style: italic;
    color: #634e42;
}

.testo h1{
    text-align: center;
    font-size:28px;
    color: #27348b;
    margin:30px auto;
}
.testo p{
    text-align: center;
    font-size:24px;
    color: #634e42;
    font-weight: 300;
}
.testo p b{
    font-weight: 600;
    color: #27348b;
}
.testo p i{
    font-style: italic;
}

.testo p + p{
    margin-top:30px;
}
.stelline{
    max-width:100px;
    width: 100%;
    margin:30px auto;
}
.button{
    background-color: #27348b;
    color: #fff;
    font-size:24px;
    padding: 15px 30px;
    margin: 50px auto 0px;
    width: auto;
    border-radius: 20px;

}