body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    /*background-image: url("img/rps_icon.webp"); */
    background-color: rgb(22, 33, 41);
    background-size: cover;
}
#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    color: white;
    font-size: 4rem;
    text-shadow: 1px 1px 2px black;
    margin-bottom: 50px;

}
#button_container {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin:20px;
}
button {
    background-color: transparent;
    border: none;
    border-radius: 10px;
    margin: 10px;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
button img {
    width: 120px;      /* Resize to look more like buttons */
    height: 160px;     /* Keep aspect ratio-ish but more button-like */
    border-radius: 10px;
}
button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px black;
}
#score, #output {
    color: white;
    margin: 10px;
    font-size: 1.5rem;
    text-align: center;
}

@media (max-width: 600px) {
    #button-row {
        flex-direction: column;
    }

    button img {
        width: 80px;
        height: 110px;
    }
    #score, #output {
        font-size: 0.75rem;
    }
    h1 {
        font-size: 2rem;
    }
}