* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.box {
    width: 100%;
    height: 100vh;
    background-image: url("./images/wp9514577.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dice {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 56px;
    border: 2px solid #333;
    background-color: transparent;
    border-radius: 10px;
    flex-direction: column;
    color: white;
    margin-bottom: 20px;
    transition: transform 0.2s ease-in-out;
}

.dice:hover {
    transition: all .5s;
    background-color:white;
    color: black;
}

button {
    padding: 10px;
    margin-bottom: 80px;
    font-size: 20px;
    cursor: pointer;
    background-color: gred;
    color: #1d1d1d;
    border: 1px solid;
    border-radius: 15px;
    /* transition: background-color 0.3s ease; */
}

button:hover {
    transition: all .5s;
    border: 2px solid white;
    background-color: transparent;
    color: white;
}