
@charset "UTF-8";
/* CSS Document */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Comfortaa";
    color: black;
}

body {
    /* background-color: #FFFBEF;*/
    background-color: white;
}

main {
    max-height: 100vh;
    width: 100%;
}

.container {
    display: flex;
    color: white;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.sub-container {
    /* border: 1px solid red !important; */
    display: flex;
    align-items: center;
}

.bg-img {
    object-fit: contain;
    width: 340px;
}

.bg-img1 {
    margin: 0 0 auto 0;
}

.bg-img2 {
    margin: auto 0 0 0;
}

.logo {
    width: 250px;
    /* width: 280px; */
    margin-bottom: 170px;
    top: 101px;
}

.content {
    flex-flow: column;
    text-align: center;
    padding: 50px 0px;
    justify-content: space-between;
    width: 100%;
    /*min-width: 500px;*/
    min-height: 700px;
}

.text h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
}


.contatti {
    margin-bottom: 120px;
}

.contatti a {
    text-decoration: none;
    font-weight: 700;
    color: #FF00CF;
}


.contatti p,
.text p {
    font-size: 20px;
    line-height: 27px;
}




@media only screen and (max-width: 510px) 
{

    .logo {

        width: 280px;

    }

    .text p {
        font-size: 18px;
    }

    .text {
        height: 300px;
        /*margin-top: -100px;*/ 
     }
} 