@font-face {
    font-family: "BrandFont";
    src: url("Vinque.otf");
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

body {
    background-color: #1b1b1b;
    text-align: center;
    font-family: BrandFont;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.bang {
    display: none;
}

.dark {
    position: absolute;
    filter: invert();
}

.text {
    color: #1b1b1b;
    font-size: xx-large;
    user-select: text;
}

.light {
    position: absolute;
    opacity: 0;
}

a {
    color: #1b1b1b;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
        color: #a79a0d;
    }
}

img {
    margin-top: -65px;
    width: 256px;
    position: relative;
    z-index: 1;
}

h1 {
    color: #1b1b1b;
    font-size: 36pt;
    position: relative;
    z-index: 10;
}

.fadeLogo {
    animation: fadeLogoAnim 10s cubic-bezier(0.12, 0, 0.39, 0) 2s forwards;
}

.fadeBackground {
    background-color: #ffffff;
    animation: fadeBackgroundAnim 10s cubic-bezier(0.12, 0, 0.39, 0) 2s forwards;
}

@keyframes fadeLogoAnim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeBackgroundAnim {
    0% {
        background-color: #ffffff;
    }
    100% {
        background-color: #f7f7f7;
    }
}
