*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body{
    height: 100%;
    width: 100%;
    background-color: cadetblue;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-top: 2%;
}

.container{
    font-weight: bold;
    width: 40%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#roll-dice-btn{
    font-size: 15px;
    margin-top: 10%;
    border: none;
    box-shadow: 0px 0px 5px 0px rgb(52, 93, 94);
    padding: 15px 35px;
    background-color: greenyellow;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#roll-dice-btn:hover{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}



h3{
    font-size: 100px;
    margin-top: 10%;
    color: rgb(229, 229, 229);
}

h1{
    font-size: 60px;
}

#dice-history-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 4%;
}

.dice-history{
    background-color: bisque;
    height: 70px;
    padding: 0px 5px;
    font-size: xx-large;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#modal-container{
    user-select: none;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.667);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0px;
}
#modal-window{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* display: none; */
    position: absolute;
    width: 50%;
    height: 200px;
    border-radius: 10px;
    background-color: rgb(77, 77, 77);
    font-size: xx-large;
    font-weight: bold;
    color: rgb(221, 0, 0);
    text-shadow: 0px 0px 0px black;
    box-shadow: 0px 0px 10px 0px rgb(32, 32, 32);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#close-modal-btn{
    border: none;
    font-size: 10px;
    align-self: flex-end;
    padding: 5px 15px;
    background-color: whitesmoke;
    border-radius: 0px 5px 0px 0px;
    -webkit-border-radius: 0px 5px 0px 0px;
    -moz-border-radius: 0px 5px 0px 0px;
    -ms-border-radius: 0px 5px 0px 0px;
    -o-border-radius: 0px 5px 0px 0px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#close-modal-btn:hover{
    background-color: rgb(255, 0, 0);
    color: white;
    cursor: pointer;
}

#text{
    margin-bottom: 12%;
}