*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
	background-image: linear-gradient(to right, black 0%, blue 25%);
}
h1{
   margin-top: 20px;
   color: hsl(210, 63%, 50%)
}
#container{
    width: 400px;
    padding: 30px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 5px 5px 20px hsl(0, 0%, 0%,0.3);
    border-radius: 10px;
}

button{
    padding: 6px 25px;
    background-color: #0000ff;
    border: none;
    border-radius: 6px;
    color: #000000;
    font-weight: bold;

}
button:hover{
    scale: 1.05;
    background-color: hsl(210, 63%, 30%);
}
button:active{
    scale: 1.05;
    background-color: hsl(210, 63%, 60%);
}
input{
    width: 50%;
    font-size: 1.5rem;
    text-align: center;
}
#diceImage{
    margin: 25px;
}
#diceImage img{
    height: 100px;
    margin: 5px;
}
