body {
    background-image: url('london.jpg');
    background-repeat: no-repeat;
    background-size: 90% 90%;
    background-position: center;
    border-radius: 10px;
    background-color: #FFF9C4;
}
body url { 
    border-radius: 10px;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}


.wheel {
    border: 2px solid black;
    border-radius: 50%;
    margin-left: 50px;
    height: 55vw;
    width: 55vw;
    max-height: 500px;
    max-width: 500px;
    animation-name: wheel;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    position: absolute;
}

.line {
    background-color: black;
    width: 50%;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 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: red;
    width: 20%;
    height: 20%;
    position: absolute;
    border: 2px solid;
    transform-origin: 50% 0%;
    animation-name: cabins;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


.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);
    }
    14% {
        background-color: orange;
    }
    28% {
        background-color: yellow;
        }
    42% {
        background-color: green;
    }
    56% {
        background-color: blue;
    }
    70% {
        background-color: indigo;
    }
    84% {
        background-color: violet;
    }
    100% {
        transform: rotate(-360deg);    
    }
}
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: cadetblue;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    z-index: 1000; /* Make sure the button is on top of everything */
}

.back-button:hover {
    background-color: #0056b3;
}

.back-button:active {
    transform: scale(0.95); /* Slightly shrink the button on click */
}

body a {
    font-family: "Akaya Kanadaka", system-ui;
    font-weight: 400;
    font-style: normal;
    color: orangered;
}

