/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #ffffff;
    color: #111111;

    font-family: "Cormorant Garamond", Georgia, serif;

    -webkit-font-smoothing: antialiased;
}


/* PAGINA */

.home {
    width: 100%;
    height: 100vh;

    padding: 25px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* TESTO INTRODUTTIVO */

.intro {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 30px auto;

    text-align: center;
}

.intro p {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;

    color: #111111;

    text-align: center;
}


/* SHOWREEL */

.video-wrapper {
    width: min(80vw, 900px);

    aspect-ratio: 16 / 9;

    position: relative;
}

.video-wrapper iframe {
    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    border: 0;
}


/* SMARTPHONE */

@media (max-width: 600px) {

    .home {
        padding: 25px 15px;
    }

    .intro {
        margin-bottom: 25px;
    }

    .intro p {
        font-size: 18px;
    }

    .video-wrapper {
        width: 92vw;
    }

}