
@font-face {
    font-family: 'Helvetica Neue';
    src: url('/font/HelveticaNeueLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/font/HelveticaNeueRoman.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('/font/HelveticaNeueBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

html {
    font-family: "Helvetica Neue", sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
}

.logo  {
    position: relative;
    display: inline-block;
}
.logo img {
    max-width: 100%;
    width: 400px;
}
.titolo {
    margin: 100px 0 160px;
}
h1 {
    font-weight: 700;
    font-size: 55px;
    line-height: 1;
}
h1 b {
    color: #3CB8EB;
}
.titolo p {
    font-size: 20px;
    line-height: 1.5;
}
.testo p {
    font-size: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 500px) {
    .logo img {
        width: 200px;
    }
    .titolo {
        margin: 50px 0 100px;
    }
    h1 {
        font-size: 30px;
    }
    .testo p {
        font-size: 14px;
        line-height: 1.5;
    }
}