#menu-title {
    font-size: 7em;
    margin-top: 20px;
    font-weight: bold;
    position: relative;
    top: 10px;
    left: 35px;
    -webkit-text-stroke: 1px white;
    /* Text shadow to create an outline effect */
    text-shadow:
        2px 2px 0 white,
       -2px 2px 0 white,
        2px -2px 0 white,
       -2px -2px 0 white,
        0px 2px 0 white,
        2px 0px 0 white,
        0px -2px 0 white,
       -2px 0px 0 white;
       /* end of outline effect */
}

/* Rain background canvas (behind all content) */
#rain {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
}

.overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.04),
        rgba(0,0,0,0.4)
    );
    pointer-events: none;
    z-index: -1;
}

body {
        font-family: 'Quantico', sans-serif;
        background-color: black;
}

.button:hover {
    background-color: rgb(71, 70, 70) !important;
}

#story-mode-button {
    font-family: 'Quantico', sans-serif;
    font-size: 3em;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border: 3px solid white;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    position: relative;
    left: 100px;
    bottom: 50px;
}

#versionLabel {
    font-family: 'Quantico', sans-serif;
    font-size: 1.5em;
    color: white;
    position: absolute;
    bottom: 0px;
    right: 20px;
}

#online-players-count {
    font-family: 'Quantico', sans-serif;
    font-size: 1.5em;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
}

#links-list {
    font-family: 'Quantico', sans-serif;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}