/* styles.css */
#logo {
    padding: 80px 0 20px 0;
}

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

p {
    padding: 0 0 6px 0;
    color: white;
}

h1 {
    color: white;
}

.center {
    display: flex;
    justify-content: center;
    opacity: 1;
}

.funky-alignment {
    text-align: center;
    width: 900px;
    padding: 20px 0 20px 0;
    display: inline-block;
    padding: 0 0 30px 0;
}

#full-domain {
    font-size: 30px;
    padding: 0 0 20px 0;
}

.footer {
    padding: 50px 0 30px 0;
}

img {
    padding-left: 10px;
    padding-right: 10px
}

a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: red;
    background-color: transparent;
    text-decoration: none;
}

a:active {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

html, body {
    height: 100%;
    padding: 10px;
}

body {
    display: table;
    width: 100%;
    background-color: #1F1F1F;
    color: #000;
    height: 100%;
    line-height: 1.6;
    position: relative;
    font-family: sans-serif;
    overflow: hidden;
    z-index: -2;
}

.lines {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90vw;
    z-index: -1;
}

.line {
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: -1;
}

.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);
    z-index: -1;
}

.line:nth-child(1) {
    margin-left: -50%;
    z-index: -1;
}

.line:nth-child(1)::after {
    animation-delay: 2s;
    z-index: -1;
}

.line:nth-child(2) {
    margin-left: -25%;
    z-index: -1;
}

.line:nth-child(2)::after {
    animation-delay: 3s;
    z-index: -1;
}

.line:nth-child(4) {
    margin-left: 50%;
    z-index: -1;
}

.line:nth-child(4)::after {
    animation-delay: 2.5s;
    z-index: -1;
}

.line:nth-child(5) {
    margin-left: 25%;
    z-index: -1;
}

.line:nth-child(5)::after {
    animation-delay: 3s;
    z-index: -1;
}

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