@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@900&display=swap');

:root {
    --red: #ff0000;
    --black: #000000;
    --white: #ffffff;
}

.logo {
    font-family: 'Geologica', sans-serif;
    font-size: 5rem;
    transform: skew(-10deg);
    margin-top: 20px;
    color: #ff0000;
    text-align: center;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #000;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #fff;
}

.wrapper {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    /* scroll-snap-type: y mandatory; */
    perspective: 200px;

}

.parallax_group {
    position: relative;
    height: 100vh;
    width: 100vw;
    transform-style: preserve-3d;
}

.parallax_layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg {
    background: url('../img/background.png') no-repeat center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateZ(-200px) scale(2);
    z-index: 1;

}

.bs {
    /* center div */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* size */
    width: 100%;
    height: 85vh;
    text-align: center;
}

.bs-iframe {
    border: none;
}

.gradient {
    background-size: cover;
    transform: translateZ(-200px) scale(2);
    z-index: 3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 1) 100%);
}


.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 40%;
}

.browse-container {
    position: absolute;
    left: 50%;
    top: 130%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    text-align: center;
}

.text {
    background-size: cover;
    transform: translateZ(0px) scale(1);
    z-index: 3;

}

.text h1 {
    /* position: absolute;
    left: 2.5rem;
    top: 2.5rem; */
    font-family: 'Geologica', sans-serif;
    font-size: 6rem;
    transform: skew(-10deg);
    margin-top: 20px;
    color: #ff0000;
    text-align: center;
}


.text ul {
    font-size: 1rem;
    position: absolute;
    /* right: 2.5rem; */
    top: 2.5rem;
}

.text ul li {
    margin-left: 2.5rem;
    list-style-type: none;
    float: left;
    visibility: hidden;
}

#bb:hover {
    animation: glow .25s ease-in-out alternate;
    animation-fill-mode: forwards;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #fff;
    }

    100% {
        text-shadow: 0 0 20px #fff;
    }

}

@keyframes appear {

    /* cool appearing animation */
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 760px) {
    .text ul li {
        visibility: visible;
    }
}

@media (min-width: 1300px) {

    .bg .text {
        background-size: contain;
    }

    /* .bs-iframe {
        border-radius: 15px;
    } */
}