body {
    text-align: center;
    background: #000000;
    color: #ffffff;
    padding: 20px;
    background-image: url("https://imgs.search.brave.com/9BYOi6zq8uZfpqK-P6cCaXexdkUewdIYWYQ0xg_NTSQ/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly9tZWRp/YS5nZXR0eWltYWdl/cy5jb20vaWQvMTM5/NDQ0Nzc3OS9waG90/by9zdGFyZmllbGQu/anBnP3M9NjEyeDYx/MiZ3PTAmaz0yMCZj/PTI4N3RERi02TEpH/aVVjQ2lJNHVEeXVD/WlZPeU9EMzZjejBt/QlBOdWp4U2s9");
}
.menu {
    width: 80%;
    background-color: #44709b;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    max-width: 500px;
}
.item p {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.price {
    text-align: right;
    width: 25%;
}
.food {
    text-align: left;
    width: 75%;
}
.orpheus {
    max-width: 15%;
}
hr {
    border: 2px solid white;
}
.wheel {
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    height: 55vw;
    width: 55vw;
    max-width: 500px;
    max-height: 500px;
    animation-name: wheel;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.line {
    background-color: white;
    width: 50%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0% 0%;
}
.line:nth-of-type(2) {
    transform: rotate(60deg);
}
.line:nth-of-type(3) {
    transform: rotate(120deg);
}
.line:nth-of-type(4) {
    transform: rotate(180deg);
}
.line:nth-of-type(5) {
    transform: rotate(240deg);
}
.line:nth-of-type(6) {
    transform: rotate(300deg);
}
.cabin {
    background-color: white;
    width: 20%;
    height: 20%;
    position: absolute;
    transform-origin: 50% 0%;
    animation: cabins 10s ease-in-out infinite;
}
.cabin:nth-of-type(1) {
    right: -8.5%;
    top: 50%;
}
.cabin:nth-of-type(2) {
    right: 17%;
    top: 93.5%;
}
.cabin:nth-of-type(3) {
    right: 67%;
    top: 93.5%;
}
.cabin:nth-of-type(4) {
    left: -8.5%;
    top: 50%;
}
.cabin:nth-of-type(5) {
    left: 17%;
    top: 7%;
}
.cabin:nth-of-type(6) {
    right: 17%;
    top: 7%;
}
@keyframes wheel {
    0% {
        transform: rotate(0deg);
    }
    100% {transform: rotate(360deg);
    }
}
@keyframes cabins {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.boba {
    width: 75%;
}
.swirl {
    width: 50%;
}
.grub {
    width: 100%;
}
.hackaccino{
    width: 55%;
}
.bakebuild {
    width: 95%;
}
.juice {
    width: 95%;
}
a {
    color: white;
}