/* ================================================== FONTS IMPORT */

@font-face {
    font-family: "Sansation";
    src: url(../fonts/Sansation_Regular.woff) format("woff"),
        url(../fonts/Sansation_Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Sansation";
    font-weight: 200;
    src: url(../fonts/Sansation_Light.woff) format("woff"),
        url(../fonts/Sansation_Light.ttf) format("truetype");
}

@font-face {
    font-family: "Sansation";
    font-weight: 600;
    src: url(../fonts/Sansation_Bold.woff) format("woff"),
        url(../fonts/Sansation_Bold.ttf) format("truetype");
}

/* ================================================== GLOBAL STYLE */

:root {
    --bg-color: #170330;
    --main-bg-color: #2e0166;
    --section-bg: #320F7E;
    --shadow-color: #210b52;
    --black: #00092b;
    --selector: #ff9d53;
    --stability: rgb(103, 224, 103);

    --font: "Sansation";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    cursor: url(../images/fly.png) 5 5, auto;
    background: var(--bg-color);
    font-family: var(--font), sans-serif;
    letter-spacing: .5px;
    overflow: hidden;
}

p,
ul {
    font-size: 14px
}

/* ================================================== MAIN LAYOUT */

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    --main-width: 1400px;

    width: var(--main-width);
    height: calc(var(--main-width) * 6 / 10);
    border-radius: 40px;
    position: relative;
}

main.shadow::before {
    background: var(--main-bg-color);
    border-radius: 40px
}

main.shadow::after {
    height: 70vh;
    bottom: -50vh;
    background: #240649;
    ;
    border-radius: 40px
}

/* ================================================== BGM */

#bgm {
    display: none
}

/* ================================================== NO MOBILE */

#no-mobile {
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    color: white;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

@media screen and (max-width: 600px) {
    #no-mobile {
        display: flex;
    }
}