body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 500ms;
}

#disk {
    border-color: black;
    border-style: solid;
    border-width: 5px;
    height: 75vh;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin:auto;
    inset: 0;
}

#needle {
    border-radius: 50%;
    transform: rotate(0deg);
    position: absolute;
    inset: 0;
    margin: auto;
    width: 90%;
}

#star {
    position: absolute;
    width: 9%;
}

#wheel {
    position: absolute;
    width: 100%;
}

#score {
    position: absolute;
    bottom: 2vh;
}

#directions{
    z-index: 1;
    text-align: center;
    position: absolute;
    margin: auto;
    background-color: rgb(216, 216, 216);
    border-color: black;
    border-style: solid;
    border-width: 5px;
    inset: 0;
    width: 50vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 500ms;
}

#directions p {
    font-size: xx-large;
}

@media (max-width:1000px) {
    #disk {
        width: 80vw;
        height: auto;
    }
}