body {
    display: grid;
    place-items: center;
    height: 100vh;
    margin: 0;
    font-family: "Lavishly Yours",sans-serif;
    background: url("./linna.jpg") center center no-repeat;
    background-size: cover;
}

h1, p {
    color: white;
    font-size: 80px;
    text-shadow: 1px 1px 3px black;
}

button {
    font-family: "Lavishly Yours",sans-serif;
    padding: 40px;
    border-radius: 20px;
    font-size: 80px;
    cursor: pointer;
    background-color: white;
    border: 4px solid black;
}

#wheelcontainer {
    position: relative;
    perspective: 1000px;
}
#wheel {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
}
.wheeltile {
    position: absolute;
    font-size: 50px;
    font-weight: bold;
    display: grid;
    place-items: center;
    opacity: 1;
    background-color: white;
    border-radius: 10px;
    box-sizing: border-box;
    border: 3px solid black;
}