@font-face {
    font-family: 'Nexa';
    src: url(fonts/Nexa-Heavy.ttf);
}

@keyframes grow {
    from {
        transform: scale(1);
        filter: brightness(0.75);
    }

    to {
        transform: scale(1.15);
        filter: brightness(1);
    }
}

@keyframes shrink {
    from {
        transform: scale(1.15);
        filter: brightness(1);
    }

    to {
        transform: scale(1);
        filter: brightness(0.75);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nexa';
}

body {
  background: linear-gradient(454deg, #55448d, #db4500);
}

.container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}
.slides {
    width: 100%;
    height: 100vh;
    color: #fff;
    scroll-snap-align: start;
    background: #00000000;
}
.introTitle {
    font-size: 100px;
    position: relative;
    top: 300px;
    text-align: center;
    font-size: calc(5vw + 5vh);
}
.introText {
    font-size: 30px;
    position: relative;
    top: 300px;
    text-align: center;
    font-size: calc(1.5vw + 1.5vh);
}

.ccTitle {
    position: relative;
    top: 100px;
    text-align: center; 
    font-size: calc(4vw + 4vh);
}

.ccText {
    position: relative;
    top: 100px;
    text-align: center; 
    font-size: calc(1.5vw + 1.5vh);
}

.top img, .bottom img {
    width: calc(10vw + 10vh);
    padding: 50px;
}

.top, .bottom {
    position: relative;
    top:175px;
    justify-content: center;
    display: flex;
}

.YT, .b2 {
    animation: shrink 0.3s both;
    user-drag: none,
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.YT:hover, .b2:hover {
    animation: grow 0.3s both;
}

.specsTitle {
    font-size: 100px;
    position: relative;
    top: 30px;
    text-align: center;
    font-size: calc(5vw + 5vh);
}

.specsText {
    position: relative;
    text-align: center;
    font-size: calc(0.5vw + 2.5vh);
    top:80px
}

.bg img {
    position: fixed;
    height: 150%;
    width: auto;
    left: 0px;
    top: 0px;
    z-index: -1;
    opacity: 0.5;
    display: inline-flex;
    filter: blur(8px); 
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; }
