body {
    background-color: rgb(36, 39, 41);
    color: #f0f0f0;
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
}

.title-svg {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.svg-title {
    font-family: 'Arial', sans-serif;
    font-size: 5rem;
    font-weight: bold;
    fill: #f0f0f0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.title-svg {
    animation: float 5s ease-in-out infinite;
}

.fade-in-container {
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    margin: 5% 0 3% 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu {
    margin-top: 20px;
}

#menu-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    justify-content: center;
    gap: 20px;
}

.menu-item {
    padding: 10px 20px;
    color: #fff;
    font-size: 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #555;
}

a {
    text-decoration: none;
    color: #f0f0f0;
}

@media (max-width: 600px) {
    .menu-item {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

#balance-display {
    font-size: 1.3em;
}

#resetBalance {
    padding: 10px 20px;
    color: #fff;
    width: max-content;
    height: max-content;
    font-size: 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#resetBalance:hover {
    background-color: #555;
}
.soon {
    font-size: 0.3em;
}