body {
    margin: 0;
    min-height: 100vh;
    background-image: url("img/fondprincipal.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: default;
}

.menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    font-family: "Press Start 2P", cursive;
    font-size: 16px;

    padding: 18px 35px;

    color: #f4e4bc;
    background-color: #5a3e22;

    border: 4px solid #24160a;
    border-radius: 12px;

    box-shadow:
        4px 4px 0 #24160a,
        8px 8px 0 rgba(0, 0, 0, 0.3);

    cursor: pointer;

    transition: transform 0.1s;
}

.btn:hover {
    transform: scale(0.95);
}

.btn:active {
    transform: translate(4px, 4px);

    box-shadow:
        2px 2px 0 #24160a;
}

#onlineCounter {
    position: fixed;

    bottom: 20px;
    right: 20px;

    font-family: "Press Start 2P", cursive;
    font-size: 10px;

    color: #f4e4bc;

    background: rgba(0, 0, 0, 0.7);

    padding: 12px;

    border: 3px solid #24160a;
    border-radius: 8px;

    box-shadow:
        3px 3px 0 #24160a;
}