.container {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
}

input {
    padding: 5px 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    width: 200px;
}

button {
    font-size: 1.5rem;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    background-color: aqua;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.25s;

}

button:hover {
    background-color: rgb(20, 217, 217);
}

button:active {
    background-color: hsl(180, 83%, 70%);
}

#diceResult {
    margin: 20px 0;
}

#diceImages img{
    width: 170px;
    margin: 0 5px;
    border-radius: 10px;
}