body {
    font-family: monospace !important;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    position: relative;
    opacity: 0;
    transition: opacity 1.5s ease;
}

video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: blur(7px);
    opacity: 0;
    transition: opacity 3.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 1;
    transition: opacity 1.5s ease;
}

.overlay.hidden {
    opacity: 0;
}

.overlay-message {
    color: white;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
}

a {
    display: inline-block;
}

.downloadbutton {
    background-color: transparent;
    color: #FFFFFF; /* Removed extra '#' from color value */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    font-family: monospace !important;
}

.main-buttons {
    margin-top: 20px;
    margin-bottom: 10px; /* New spacing added */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
}

.credits {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-size: 14px;
    color: #FFFFFF;
}

.work-heading {
    font-size: 36px; /* Adjust the font size as needed */
}


* {
    cursor: url(https://cdn.discordapp.com/attachments/1213522395906707507/1254384250120048650/cursor.cur?ex=66794bde&is=6677fa5e&hm=9932db2be3e98eb78f58b250d0fd995ae059778fddd795e790e4edfe21b50986&) 16 16, auto !important;
}

.rainbow {
    animation: rainbow 2s infinite; /* Added animation name 'rainbow' */
}

@keyframes rainbow {
    0% { color: red; }
    25% { color: yellow; }
    50% { color: green; }
    75% { color: blue; }
    100% { color: rgb(255, 145, 0); }
}
