body {
    color: #FFF;
    height: 100vh;
    margin: 0;
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;
}

#game-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-image: url(rps-images/rps-background-image1.webp);
    background-size: 100% 100%;
    background-position: center;
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

#text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    text-shadow: 0 0 5px #000;
    text-shadow: 0 0 15px #000;
    
}

.display-text {
    font-size: 50px;
    margin: 5px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.game-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.game-option:hover {
    transform: scale(1.05);
}

.game-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
}

.game-button button {
    font-size: 20px;
    font-weight: bolder;
    padding: 10px;
    color: rgb(203, 250, 208);
    background-color: #181818;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.game-button button:hover {
    background-color: rgb(203, 250, 208);
    color: #181818;
}

#back{
    width: 100%;
    display: flex;
    justify-content: center;
}

#back button {
    font-size: 20px;
    font-weight: bolder;
    padding: 10px;
    color: rgb(203, 250, 208);
    background-color: #181818;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    transition: transform 0.5s ease;
}

#back button:hover {
    transform: scale(1.05);
    color: #181818;
    background-color: rgb(203, 250, 208);
}

@media (max-width: 1000px) {
    #game-area {
        justify-content: flex-start;
    }
}