*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
body{
    font-size: large;
}
h1{
    font-size: 50px;
}
h3{
    font-size: 30px;
}
h5{
    font-size: 20px;
}
.header{
    text-align: center;
    padding: 20px;
    font-weight: bold;
    color: black;
    justify-content: center;
    align-items: center;
}
.wheel{  
    width: 280px;
    height: 280px;
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    display: flex;
    justify-content: center;
   align-items: center;
    height: 20vh;
    width: 100vh;
    background-color: grey;
    border-radius: 20px;
    box-shadow: 10px 10px 10px 2px rgba(0, 0, 0, 0.3);
}
.circles{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid black;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    top:var(--poxX);
    left:var(--poxY);
}
.footer{
    text-align: center;
    padding: 20px;
    font-weight: bold;
    color: black;
    justify-content: center;
    align-items: center;
    font-size: large;
}
.logo{
    width: 150px;  
}
#box1{
    background-color: red;
}   
#box2{
    background-color: blue;
}
#box3{
    background-color: green;
}
#box4{
    background-color: yellow;
}
#box5{
    background-color: purple;
}