* {
    padding: 0;
    margin: 0;
}

body{

    display: flex;
    justify-content: space-around;
}
#main-container {

    height: 15rem;
    width: 30rem;
    margin-top: 20rem;
    border: 2rem solid rgb(242,238,250);
    border-radius: 1.5rem;
   background-color: rgb(242,238,250);
}


#dice-img {
    height: 3rem;
    width: 3rem;
}
#container{

    border-radius: 1.5rem;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
     height: 15rem;
     display: flex;
     flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    background-color: white;

}
#btn{

    height: 2.3rem;
    width: 8rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: none;
    background-color: rgb(70,165,195);
    color: aliceblue;
    font-weight: 600;
    font-size: large;
    cursor: pointer;
}
#btn:hover{

background-color: rgb(76, 175, 206);
transition: 0.3s;
}
#btn:active{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}
img{
    border-radius: 8px;
    border: none;
}
