* {
    margin: 0;
    padding: 0;
    font-family: cursive, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 1rem;
    background-color: blue;
    border-radius: 10px;
    color: white;
    width: 75%;
    height: 18rem;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 15rem;
    gap: 1em;
    margin-top: 1rem;
}

button {
    padding: 9px;
    font-size: 12px;
    border: 1px solid beige;
    background-color: beige;
    border-radius: 5px;
    outline: none;
    transition: all 0.2s ease;
}

button:hover {
    background-color: navy;
    color: white;
    border: 1px solid navy;
}


h1 {
    border: 2px solid white;
    padding: 4px 20px;
    border-radius: 2rem;    
}

.dices{
    display: flex;
    margin-top: 5rem;
    justify-content: center;
    gap: 1rem;
}

.dices h1{
    font-size: 6rem
}