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

body {
    height: 100vh;
    background: linear-gradient(
        #e92e3d,
        #ee9d9b) 0 100% no-repeat;
    background-size: 100% 50%;   
}

.container {
    width: 400px;
    padding: 50px;
    border: none;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background-color: lightgoldenrodyellow;
    box-shadow: 0 5px 35px rgba(50, 50, 50, 0.15);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Poppins",sans-serif;
}

#dice-1{
    height: 100px;
    width: 100px;
}

#dice-2{
    height: 100px;
    width: 100px;
}

.dice-wrapper{

    width: 90%;
    display: flex;
    justify-content: space-around;

}

p{
    font-size: 16px;
    margin: 30px 0;
    font-weight: 500;
}

button{
    background-color: greenyellow;
    border: none;
    outline: none;
    color: red;
    padding: 15px 0;
    width: 150px;
    letter-spacing: 1px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
}

.shake{
    animation: shake 0.5s infinite ease-in-out;
}

@keyframes shake {
    0% {
        transform: rotate(180deg);
        }
    50% {
        transform: rotate(-180deg);
    }
    100% {
        transform: rotate(180deg);
    }
}