body {
    background-color: #282828;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

button {
    background-color: #b58863;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #a37c4a;
}

button:active {
    background-color: #8e6b3d;
}

span {
    color: white;

    font-size: 20px;
    font-weight: bold;
}

.modelLoading {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s, visibility 0.5s;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 1;
    visibility: visible;

    transition: opacity 0.5s, visibility 0.5s;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

.overlay-content {
    background-color: #282828;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gameCode > button {
    background-color: #00000000;
    color: #b58863;

    font-size: 20px;
    font-weight: bold;

    padding: 0;
    
}
