*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
   
}

body, html {
    height: 100%;
  }

body
{
    background: url("../images/wheelBackground.jpeg");
    background-repeat: no-repeat;
    background-position: center;
      background-size: cover;
      height: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffff00;
    
    
    height: 100px;
    width: 100%;

}

.navbar-left,
.navbar-right {
    flex-basis: 20%;
    text-align: center;
    height: 20px;
    margin-bottom: 5px;
   
}

.navbar-center {
    flex-grow: 1;
    text-align: center;
}

#logo {
    max-width: 100%;
    height: 50px;
    margin-bottom: 5px;
}

a {
    text-decoration: underline;
    color: #000;
}

.spinaway
{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    margin-top: 20px;

}
.spinaway h4
{

font-weight: bold;

text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.container
{
    width: 100%;
    height: 105vh;
     display: flex;
    align-items: center;
    justify-content: center;

}
#chart{
    width: 500px;
    height: 500px;
    position: absolute;
    top:50%;
    left: 50%; 
    transform: translate(-50%,-50%)scale(1);
    text-align: center;
  }
text{
    font-size:12px;
    pointer-events:none;
    font-weight: bold;
}



.btn
{
padding: 10px 60px;
background: #fff;
border: 0;
outline: none;
cursor: pointer;
font-size: 22px;
font-weight: 500;
border-radius: 30px;
}

.popup
{
width:900px;
background: #fff;
border-radius: 6px;
position: absolute;
top:0%;
left: 50%;
transform: translate(-50%,-50%)scale(.9);
text-align: center;
padding: 0 30px 30px;
color: #333;
visibility: hidden;
transition: transform 0.4s, top 0.4s;
margin-top: 40px;

}

.open-popup
{
    visibility: visible;
    top:50%;
    transform: translate(-50%,-50%)scale(1);
}

.popup h2
{
    font-size: 30px;
    font-weight: 500;
    margin:40px 0 10px;
    background-color: #ffb921;
    
}

.popup h1
{
margin-top: 30px;
}

.popup p
{
  text-align: left;  
  margin:5px 5px 5px 5px;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5dc;
}

.popup button
{
width:50%;
margin-top: 30px;
padding: 10px 0;
background: #ffb921;
color:#000;
border:0;
border-radius: 30px;
cursor: pointer;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
font-size: 22px;

}

@media screen and (max-width: 1281px) {
    
    body {
        overflow-x: hidden; /* Ensure the background covers the entire width */
    }
  

    h1 {
        margin-top: 28px;
    }    

    .container {
        height: auto;
        padding: 10px;
    }

    #chart {
        transform: translate(-50%,-50%)scale(.72);
    }

    .popup {
       
        transform: translate(-50%,-50%)scale(.75);
        
       
        margin-bottom:10px;
}

}

@media screen and (max-width: 737px) {
    .navbar{
        height: 120px;
        
    }
    
    #chart {
        transform: translate(-50%,-50%)scale(.6);
    }

    .popup {
       
        transform: translate(-50%,-50%)scale(.6);
        
       
        margin-bottom:10px;
}

}

@media screen and (max-width: 560px) {
    
    #chart {
        transform: translate(-50%,-50%)scale(.6);
    }

    .popup {
       
        transform: translate(-50%,-50%)scale(.5);
        
       
        margin-bottom:10px;
}

}
@media screen and (max-width: 450px)
{
    .navbar{
        width: 100%;
       }

       #chart {
        transform: translate(-50%,-50%)scale(.5);
    }

.popup {
   
width:350px;
top:50%;
left: 50%;
transform: translate(-50%,-50%)scale(.5);
margin-top: 20px;
   
    
}
.popup p {
    font-size: 20px;
   
}
   
.open-popup 
{
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    
}


.popup p 
{

    font-size: 15px;
};

}






