* {
    user-select: none;
}


body {
    height: 100vh;
    /* background: linear-gradient(135deg, #333 10%, #000 100%); */ 
    color: #fff;
    background: hsl(227, 10%, 10%);
    font: 300 1em 'Fira Sans', sans-serif;
    overflow: hidden;
    /* background: #cdcfca; 
    background: linear-gradient(#fafafa, #cdcfca); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vh;
}

.instructions {
    gap: 1vh;
}
.welcome {
    color: white;
    text-align: center;
    font-size: 4vh;
}
.instruction {
    color: white;
    text-align: center;
    font-size: 3vh;
}

.logos {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.logo {
    width: 6vh;
}

.spinners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vh;
}


.spinner>input {
    width: 15vw;
    font-size: 5vw;
    font-weight: bold;
    border-radius: 15vw;
    text-align: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.spinner {
    display: grid;
    gap: 2vh;
    justify-items: center
}

.spinner>svg {
    transform-style: preserve-3d;
    transition: transform 1s ease-in;
    cursor: pointer;
    width: 13vw;
    height: 13vw;
}

/* on smaller devices we make the spinner as big as possible */
@media only screen and (max-width: 600px) {
    .spinner>svg {
        width: 20vw;
        height: 20vw;
    }
}




.spin {
    backface-visibility: visible;
    animation: spin 2s ease-out;
}



@keyframes spin {
    from {
        transform: rotateX(0)
    }

    to {
        transform: rotateX(1800deg)
    }
}

.rollbtn {
    min-width: 130px;
    min-height: 6vw;
    width: 32vw;
    color: #fff;
    padding: 5px 10px;
    height: 7vw;
    font-size: 3vw;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    overflow: hidden;
    border-radius: 5vw;
    border: none;
    background-color: #045c68
}



.rollbtn:hover {
    box-shadow: 0 0.5em 0.5em -0.4em #045c68;
}

.rollbtn:focus {
    box-shadow: 0 0.5em 0.5em -0.4em #045c68;
    background-color: #034e58;

}

dialog[open] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    border-radius: 0.6rem;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));

}

dialog[open] p {
    padding: 2rem;
}

dialog[open] div {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

dialog[open] button {
    margin: 0 1rem 1rem;
}
/* 
dialog[open]::backdrop {
    background: rgba(0, 0, 0, 0.2);
}
*/
.closebtn {
    background: none;
    border: 2px solid;
    font: inherit;
    line-height: 1;
    margin: 0.5em;
    padding: 1em 2em;

}

.source {
    color: white;
    font-size: small;
}