<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    scroll-snap-align: start;
}

.intro {
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider {
    background: grey;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
}

.intro-text {
    color: white;
    font-size: 5vw;
}

@media screen and (min-width: 1200px) {
    .intro-text {
        font-size: 3rem;
    }
}

.hide {
    background: black;
    overflow: hidden;
}

.hide span {
    transform: translateY(100%);
    display: inline-block;
}

.container {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100vh;
}

.container::-webkit-scrollbar {
    display: none;
}

/* .one {
    background: url("/images/duck.webp");
    background-size: cover;
} */
.two {
    background: url("https://res.cloudinary.com/abateroberta/image/upload/v1650888444/abateroberta/Robi1_vif6sj.jpg");
    background-size: cover;
}

.three {
    background: url("https://res.cloudinary.com/abateroberta/image/upload/v1650888436/abateroberta/Robi2_bpoigc.jpg");
    background-size: cover;
}

.four {
    background: black;
}

.video {
    top: 0;
    left: 0;
    z-index: -1;
}

@media (min-aspect-ratio: 16/9) {
    .video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video {
        width: auto;
        height: 100%;
    }
}

.navbar {
    position: fixed;
    bottom: 5%;
    width: 100%;
    display: flex;
    z-index: 1;
    opacity: 0;
}

.navbar ul {
    display: flex;
    list-style: none;
    width: 100%;
    justify-content: center;
}

.navbar ul li {
    padding: 1vw;
}

@media screen and (min-width: 1200px) {
    .navbar ul li {
        margin: 0 1rem;
        padding: 1rem;
    }
}


.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
}

.navbar ul li a:hover {
    color: wheat;
}

.contacts ul a {
    text-decoration: none;
    color: white;
    margin: 1rem;
    padding: 1rem;
}

.contacts ul a:hover {
    color: wheat;
}</pre></body></html>