::-webkit-scrollbar, ::-moz-scrollbar {
    display: none;
    scrollbar-width: none;
}

body {
    filter: invert(0);
    background-image: radial-gradient(#223125, #06110e);
    user-select: none;
    margin: 0;
    padding: 0;
    color: #ccc;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main {
    text-align: center;
}

.continue {
    font-weight: lighter;
    font-size: 28px;
    font-family: Garamond;
    color: #fff;
    opacity: 0.8;
    margin-top: 0;
}

.vignette {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 100px #000;
    overflow: hidden;
    z-index: 9;
    pointer-events: none;
}

.logo {
    width: 600px;
    margin-bottom: 20px;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.menu-button {
    font-family: "Garamond";
    text-decoration: none;
    background: none;
    border: none;
    color: #ccc;
    opacity: 0.8;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
}

.menu-button img {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-button:hover img,
.logo:hover {
    opacity: 1;
}

.menu-button:hover {
    color: #fff;
}

.fade-out {
    opacity: 0;
    font-size: 0;
    transition: opacity 0s ease, font-size 1.5s ease;
}

.update-logs {
    overflow-y: hidden;   
    width: 325px;
    height: 325px;
    position: absolute;
    right: 50px;
    bottom: 25px;
    overflow-y: scroll;
}

.patch-note {
    border: solid 1px rgba(255, 255, 255, 0.25);
    background: transparent;
    padding: 5px;
    margin-top: 5px;
    font-size: 10px;
    overflow-y: auto;
}

.patch-note h3 {
    border-bottom: dashed 1px rgba(255, 255, 255, 0.25);
    font-weight: normal;
    font-family: Fondamento;
    text-align: center;
    margin: 0 0 5px 0;
    color: #fff;
}

.patch-note h2 {
    font-weight: normal;
    font-family: Lato;
    font-size: 12px;
    text-align: center;
    margin-top: 0;
    color: #fff;
}

.patch-note span {
    font-weight: normal;
    font-size: 8px;
    text-align: center;
    margin-top: 0;
    color: #aaa;
}

.patch-note p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: normal;
    font-size: 10px;
    margin-top: 0;
    color: #bbb;
}

.orb-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    bottom: -20px;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.08;
    animation-name: floatUp;
    animation-timing-function: ease-out;
    filter: blur(1px);
}

@keyframes floatUp {
    0% {
transform: translateY(0) translateX(0);
opacity: 0.08;
    }
    100% {
transform: translateY(-110vh) translateX(var(--drift));
opacity: 0;
    }
}