.wh100 {
    height: 100%;
    width: 100%;
}

body {
    background-color: black;
    color: white;
    margin: 0 !important;
    font-family: 'Russo One', sans-serif;
}

#bg-renderer {
    z-index: 10;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
}

#content {
    z-index: 20;
    position: absolute;
    display: block;
    left:50%;
    top:40%;
    width: 50%;
    height: 60px;
    margin: -60px 0 0 -25%;
}

#title {
    font-size: 50px;
    text-align: center;
}

a {
    color: rgb(64, 124, 221);
    text-decoration: none;
    font-size: 16px;
}

.social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
}

.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    font-family: monospace;
    z-index: 1000;
}

.social-icons img:hover {
    transform: scale(1.1);
}

@keyframes title-anim {
     0% {
         color: black;
     }
     50% {
         color: black;
     }
     100% {
         color: white;
     }
 }