body {
    background-image: url(images/space.jpg);
    background-size: cover;
    font-family: 'Roboto', sans-serif;
    color: #000000;
}

.dicebox {
    position: absolute;
    top: 10%;
    left: 10%;
    bottom: 10%;
    right: 10%;
    background-color: rgba(255, 255, 255, 0.6);
    width: 75%;
    height: 75%;
    text-align: center;
    margin: auto;
    padding: 10px;
    border-style: 50px double;
    border-color: #000000;
    word-wrap: normal;
}

.diceimage {
    height: 85%;
    width: 90%;
    margin: auto;
    object-fit: contain;
}

.dicenumber {
    color: #ffffff;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: bold;
}

button {
    margin: 0;
    position: absolute;
    /* background-image: url(images/dicebutton.png); */
    background-color: transparent;
    /* background-repeat: no-repeat; */
    /* background-position: 50% 50%; */
    height: 70%;
    width: 50%;
    top: 15%;
    left: 25%;
    border: none;
    cursor: pointer;
}

button span {
    display: none;
}

@media (max-width: 1100px) {
    .dicenumber {
        top: 35%;
        font-size: 6rem;
    }
}

@media (max-width: 600px) {
    .dicenumber {
        top: 43%;
        font-size: 3rem;
    }
}