@keyframes clickToEnter {
	0%    {color: rgba(30, 30, 30, .5); }
	50%   {color: rgba(0, 0, 0, 1);     }
	100%  {color: rgba(30, 30, 30, .5); }
}

body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/res/image/image.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    background-attachment: fixed;
    cursor: pointer;
    overflow-x: hidden;
    overflow-y: hidden;
}

body.nopointer {
    cursor: default;
}

.the-div-to-rule-all-divs { /* don't question naming choices */
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.the-h1-that-is-the-website-domain-name {
    color: white;
    font-size: 80px;
    margin-top: -200px;
}

.click-to-enter {
    text-align: center;
    color: rgba(30, 30, 30, .5);
    font-size: 30px;
    animation-name: clickToEnter;
    animation-duration: 3s;
	animation-iteration-count: infinite;
}

#overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color ease-in 3.5s;
}

#overlay.covering {
    background-color: rgba(255, 255, 255, 1);
}

#overlay.nocovering {
    background-color: rgba(255, 255, 255, 0) !important;
}
