html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #202020, #111119);
}

.rain {
    position: absolute;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: 3;
}

.rain.back-row {
    display: none;
    z-index: 2;
    bottom: 60px;
    opacity: 0.5;
}

body.back-row-toggle .rain.back-row {
    display: block;
}

.drop {
    position: absolute;
    bottom: 100%;
    width: 15px;
    height: 180px;
    pointer-events: none;
    animation: drop 0.8s linear infinite;
}

@keyframes drop {
    0% {
        transform: translateY(0vh);
    }
    75% {
        transform: translateY(90vh);
    }
    100% {
        transform: translateY(90vh);
    }
}

.stem {
    width: 1px;
    height: 100%;
    margin-left: 7px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
    animation: stem 0.5s linear infinite;
}

@keyframes stem {
    0% {
        opacity: 1;
    }
    65% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.splat {
    width: 15px;
    height: 10px;
    border-top: 2px dotted rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transform: scale(0);
    animation: splat 0.5s linear infinite;
    display: none;
}

body.splat-toggle .splat {
    display: block;
}

@keyframes splat {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    80% {
        opacity: 1;
        transform: scale(0);
    }
    90% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
}

.centered {
    width: 60%;
    height: 65%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 5;
}

.content {
    width: 100%;
    text-align: center;
}

.disp {
    display: flex;
    justify-content: space-evenly;
}

p {
    font-family: Sofia Pro, Arial, Helvetica, sans-serif;
    color: white;
    line-height: 2;
}

h1 {
    font-family: Sofia Pro, Arial, Helvetica, sans-serif;
    color: white;
    line-height: 140px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

h3 {
    font-family: Sofia Pro, Arial, Helvetica, sans-serif;
    color: white;
    line-height: 100px;
}