@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;400&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: EmperorTen;
    src: url(../../fonts/emperorten-regular.ttf);
}

@font-face {
    font-family: ArcadeClassic;
    src: url(../../fonts/arcade-classic.TTF);
}

@font-face {
    font-family: Helvetica;
    src: url(../../fonts/Helvetica.ttf);
}
body {
    background: #212674;
}

.logo-container {
    position: relative;
}

.back-btn-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2rem;
}

.back-btn-wrapper svg {
    width: 1.4rem;
    height: 1.4rem;
}

.page-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    min-height: 100vh;
    padding: 1rem .5rem;
}

.page-wrapper .logo-container {
    max-width: 100px;
    border-radius: 50%;
    transition: .3s;
}

.page-wrapper .logo-container:hover {
    box-shadow: 2px 2px 50px #08f21e,
    -2px 2px 50px #08f21e,
    2px -2px 50px #08f21e,
    -2px -2px 50px #08f21e;
}

.page-wrapper .title-text span {
    font-family: ArcadeClassic, serif;
    font-weight: bolder;
    letter-spacing: .1rem;
    line-height: 5vw;
    font-size: 8vw;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-stroke-width: calc(1px / 3);
    -webkit-text-stroke-color: black
}

.page-wrapper .title-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.page-wrapper .banner {
    position: relative;
    z-index: 5;
}

.page-wrapper .title-text .l1 {
    background-image: linear-gradient(to bottom, #e308f7 , #c429db);
    -moz-background-image: linear-gradient(to bottom, #e308f7 , #c429db);
}

.page-wrapper .title-text .l2 {
    background-image: linear-gradient(to bottom, #8c65a8 , #599c7a);
    -moz-background-image: linear-gradient(to bottom, #8c65a8 , #599c7a);
}

.page-wrapper .title-text .l3 {
    background-image: linear-gradient(to bottom, #22d648 , #03f72c);
    -moz-background-image: linear-gradient(to bottom, #22d648 , #03f72c);
}

.bg-container-wrapper {
    width: 100vh;
    height: 100vh;
    position: fixed;
}

.bg-container {
    position: absolute;
    height: 100vh;
    z-index: 1;
    width: max-content;
}

.bg-container img {
    height: 100% !important;
    width: auto !important;
}

.images-container {
    position: absolute;
    top: 22vh;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.images-container .images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.images-container .images-wrapper .L-container {
    position: absolute;
    left: 3vw;
    right: 3vw;
}

.images-container .images-wrapper .L-container img {
    width: 100% !important;
}

.images-container .images-wrapper .L2-container {
    top: 66vw;
}

.images-container .images-wrapper .L3-container {
    top: 132vw;
}

.images-container .images-wrapper .L4-container {
    top: 198vw;
}

.gap {
    position: absolute;
    left: 0;
    right: 0;
    height: 5vh;
    top: 245vw;
}

@media only screen and (min-width: 420px) {
    .page-wrapper .title-text span {
        line-height: 1.4rem;
        font-size: 2.2rem;
    }
}

@media only screen and (min-width: 520px) {

    .page-wrapper {
        padding: 1rem 2rem;
    }

    .images-container .images-wrapper {
        width: 80%;
    }

    .images-container .images-wrapper .L2-container {
        top: 51vw;
    }

    .images-container .images-wrapper .L3-container {
        top: 103vw;
    }

    .images-container .images-wrapper .L4-container {
        top: 155vw;
    }

    .gap {
        top: 195vw;
    }
}

@media only screen and (min-width: 620px) {
    .page-wrapper {
        padding: 1rem 2rem;
    }

    .images-container .images-wrapper {
        width: 60%;
    }

    .images-container .images-wrapper .L2-container {
        top: 38vw;
    }

    .images-container .images-wrapper .L3-container {
        top: 76vw;
    }

    .images-container .images-wrapper .L4-container {
        top: 114vw;
    }

    .gap {
        top: 143vw;
    }
}

@media only screen and (max-width: 998px) and (max-height: 555px) and (min-aspect-ratio: 200/110) {

    .bg-container img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .images-container {
        top: 30vh;
    }
}

@media only screen and (min-width: 998px) {

    .bg-container {
        min-height: max-content;
    }

    .back-btn-wrapper svg {
        width: 1.6rem;
        height: 1.6rem;
    }

    .bg-container img {
        min-height: auto !important;
        width: 100vw !important;
    }

    iframe {
        aspect-ratio: 15 / 9;
        width: 100%;
    }

    .page-wrapper {
        padding: 1.2rem 2rem;
    }

    .bg-container {
        width: 100vw;
    }

    .bg-container img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .gap {
        display: none;
    }

    .images-container {
        top: 4vh;
    }

    .images-container .images-wrapper {
        width: 100%;

    }

    .images-container .images-wrapper .L1-container {
        width: 26vw;
        left: initial;
        right: 3vw;
    }

    .images-container .images-wrapper .L2-container {
        width: 26vw;
        left: initial;
        right: 0;
        top: 18vw;
    }

    .images-container .images-wrapper .L3-container {
        width: 26vw;
        left: initial;
        right: 2vw;
        top: 38vw;
    }

    .images-container .images-wrapper .L4-container {
        display: none;
    }

    .images-container .images-wrapper .gap {
        display: none;
    }
}

@media only screen and (min-width: 998px) and (min-aspect-ratio: 18/11) {

    .images-container .images-wrapper .L1-container {
        width: 42vh;
        left: initial;
        right: 3vw;
    }

    .images-container .images-wrapper .L2-container {
        width: 42vh;
        left: initial;
        right: 0;
        top: 31vh;
    }

    .images-container .images-wrapper .L3-container {
        width: 42vh;
        left: initial;
        right: 2vw;
        top: 62vh;
    }
}

@media only screen and (min-width: 998px) and (max-aspect-ratio: 16/9) {

    .bg-container img {
        max-width: 100% !important;
        height: 100% !important;
        width: auto !important;
    }
}

@media only screen and (min-width: 1280px) {
    .page-wrapper .logo-container {
        max-width: 9.5vw;
        border-radius: 50%;
        transition: .3s;
    }

    .banner {
        gap: 1.4rem !important;
    }

    .page-wrapper .title-text span {
        font-size: 2.6vw;
        line-height: 1.6vw;
    }
}
