/* Remove browser spacing */
body {
    margin: 0;
    overflow: hidden;
    background: black;
}

/* Full-screen GIF background */
.background {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url("../background.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -1;
}

/* Center everything */
.page {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    transform: translateY(-225px);
}

/* Top text */
.top-text {
    width: 430px;
}

/* Symbol */
.symbol {
    width: 145px;
    margin: 20px 0;

    opacity: 0.25;
}

/* Bottom text */
.bottom-text {
    width: 430px;
}