body{
    background: linear-gradient(
        180deg,
        #5c3317 0%,
        #8b5a2b 30%,
        #a97443 50%,
        #8b5a2b 70%,
        #5c3317 100%
    );
}

.header{
    font-size: 50px;
    text-align:center;
    color: rgb(255, 255, 255);
}

img{
display: flex;
  margin-left: auto;
  margin-right: auto;
    border-radius: 30px;
transition: transform 0.3s;
justify-content: center;

}

img:hover {
  transform: scale(1.05); /* Slightly enlarge the image on hover */
  transition: transform 0.3s; /* Smooth transition */
    
}

#result{
text-align: center;
  font-size: 30px;

}

.instructions{
margin-right:auto;
background-color: #4f3207;
color: white;
padding:15px;
border-radius: 15px;
}

.retry{ 
display: flex;
  margin-left: auto;
  margin-right: auto;
justify-content: center;
text-align:center;
align-items: center;
background-color: #4f3207;
color: white;
border-radius: 15px;
width: 80px;
height: 40px;
font-size: 17px;

}

.numbers-row{
    display: flex;
    justify-content: center; 
    gap: 70px;             
    font-size: 40px;
    color: rgb(78, 43, 9);
}

.numbers-row2{
    display: flex;
    justify-content: center; 
    gap: 30px;               /* space between buttons */
    flex-wrap: wrap;         /* wrap to next line on small screens */
    padding: 10px 0;
    padding-bottom: 50px;
}


.finish{
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
    display: none;
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(163, 99, 40);
  color: white;
  border-radius: 15px;
}

.result2{
    text-align: center;
    font-size: 25px;
    margin-top: 20px;
    color: white;
}
.switch1 input, .switch2 input, .switch3 input, .switch4 input, .switch5 input, .switch6 input, .switch7 input, .switch8 input, .switch9 input{
  opacity: 0;
  width: 0;
  height: 0;
}

/* Hide default HTML checkbox */
.switch1 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  opacity: 100;
}
.switch2 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  opacity:100;
}

.switch3 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch4 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch5 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch6  {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch7 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch8 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch9 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  rotate: 90deg;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:hover {
    background-color: #b3864d;
}

input:checked + .slider {
  background-color: #6c4813;
}

input:focus + .slider {
  box-shadow: 0 0 1px #301d00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


.numbers-row2 input[type="checkbox"]:disabled + .slider {
  background-color: #572e06;    /* track color when disabled */
  cursor: not-allowed;
  opacity: 0.9;
}

.numbers-row2 input[type="checkbox"]:disabled + .slider:before {
  background-color: #ada8a8;    /* thumb color when disabled */
  border-color: #9a9a9a;
}


.attempts{
  position: fixed;
  right: 24px;        
  bottom: 24px;    
  margin: 0;          
  padding: 8px 12px; 
  font-size: 30px;
  color: rgb(0, 0, 0);
  background: rgba(255,255,255,0);
  z-index: 1000;     
  text-align: right;
  display: none;
}

.register{
position: fixed;
right: 10px;
top: 10px;
background-color: #4f3207;
color: white;
padding:15px;
border-radius: 15px;
}   


.signIn{
position: fixed;
right: 100px;
top: 10px;
background-color: #4f3207;
color: white;
padding:15px;
border-radius: 15px;
}   