@font-face {
    font-family: 'Century Gothic Bold';
    src: url('../font/Century_Gothic_Bold.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
}

html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Century Gothic Bold', sans-serif;
    color: white;
    user-select: none;
}

a {
    text-decoration: none;
    color: #6EC1FF;
}

#veil {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #000;
    pointer-events: none;
    z-index: 99;
    transition: opacity 1s ease;
}

#veil.transition {
    opacity: 1;
    pointer-events: all;
}

#veil.fade {
    opacity: 0.5;
    pointer-events: all;
}

#background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/menuBg.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -5;
}

#background.off {
    background-image: url('../assets/parallax/moon/moon_sky.png');
}
