html {
    margin: 0;
    overflow-x: hidden;
}

html,
body {
    height: 100%;
}

body {
    background-color: black;
    display: table;
    width: 100%;
    height: 100%;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.title {
    color: white;
    width: auto;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    border: dotted 4px white;
    text-align: center;
    font-family: GreatMaker;
}

.subtitle {
    color: white;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: SkyNight;
}

.navbar {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 5px;
}

.navbar a {
    padding-left: 10px;
}

button {
    z-index: 1;
    background-color: black;
    color: white;
    font-family: SkyNight;
    border: none;
}

.divider {
    margin-top: 10px;
    background: url("https://pixelsafari.neocities.org/dividers/rainbowstars4.gif");
    background-repeat: repeat-x;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    height: 22px;
}

button:hover {
    color: magenta;
}

@font-face {
    font-family: GreatMaker;
    src: url(./media/Great\ Maker.otf);
}

@font-face {
    font-family: SkyNight;
    src: url(./media/Skynight.otf);
}

.enterbutton {
    text-align: center;
}


.header {
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRI5FLkQnDS-acmsHc3cBhjwiYYLvRdCeU0YA&s");
    background-repeat: repeat-x;
    background-size: 20rem;
    color: white;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    font-family: GreatMaker;
    border: solid 2px white;
}

.header p {
    margin-right: 10px;
}

.main {
    color: white;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    font-family: SkyNight;
    font-size: 12px;
    text-align: left;
    padding: 0;
    margin: 0;
}

.mainwrap {
    width: 100vw;
    height: 70vh;
    border: dotted 1px cyan;
    padding: 10px;
}

/* Code Below From https://codepen.io/nefejames */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

.lines {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    display: flex;
    justify-content: space-between;
    /* Distribute lines evenly */
}

.line {
    position: relative;
    width: 1px;
    height: 100%;
    /*background: #ffffff;  /* Line color */
    overflow: hidden;
}

.line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    animation: drop 7s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

/* Different colors for each line's pseudo-element */
.line:nth-child(1)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF4500 75%, #FF4500 100%);
    animation-delay: 0.5s;
}

.line:nth-child(2)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #32CD32 75%, #32CD32 100%);
    animation-delay: 1s;
}

.line:nth-child(3)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #1E90FF 75%, #1E90FF 100%);
    animation-delay: 1.5s;
}

.line:nth-child(4)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFD700 75%, #FFD700 100%);
    animation-delay: 2s;
}

.line:nth-child(5)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #8A2BE2 75%, #8A2BE2 100%);
    animation-delay: 2.5s;
}

.line:nth-child(6)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #20B2AA 75%, #20B2AA 100%);
    animation-delay: 3s;
}

.line:nth-child(7)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #DC143C 75%, #DC143C 100%);
    animation-delay: 3.5s;
}

.line:nth-child(8)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00FA9A 75%, #00FA9A 100%);
    animation-delay: 4s;
}

.line:nth-child(9)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FF1493 75%, #FF1493 100%);
    animation-delay: 4.5s;
}

.line:nth-child(10)::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #00BFFF 75%, #00BFFF 100%);
    animation-delay: 5s;
}

@keyframes drop {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}

/*  */