.nav-bar
{
  justify-content: space-between;
  list-style: none;
  align-items: center;
  display: flex;
  padding: 12px 20px; 
  background-color:white;
}
.bg{
  background-color: burlywood;
}
.space{
  margin-right: 20px;
}
.spacee{
  margin-left: 20px;
}
.textheader{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 25px;
    /* color:darkviolet; */
    color:white;
}

.textheader:hover{
  color:rgb(203, 36, 161);
}
.bodycolor{
  background-color:  rgb(242, 236, 210); 
  /* background-color: white; */
}
.bgbody{
  background-color: rgb(242, 236, 210); 
}
#page {
    display: flex;
    justify-content: center;
    align-items: center;
  }
    
  #container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
    
    /* #h3 {
      color: rgb(82, 79, 79);
    } */
    
  #ring {
    width: 190px;
    height: 190px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
  }
    
  #ring:nth-child(1) {
    border-bottom: 8px solid rgb(240, 42, 230);
    animation: rotate1 2s linear infinite;
  }
    
    @keyframes rotate1 {
      from {
        transform: rotateX(50deg) rotateZ(110deg);
      }
    
      to {
        transform: rotateX(50deg) rotateZ(470deg);
      }
    }
    
  #ring:nth-child(2) {
    border-bottom: 8px solid rgb(0, 0, 0);
    animation: rotate2 2s linear infinite;
  }
    
    @keyframes rotate2 {
      from {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
      }
    
      to {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
      }
    }
    
  #ring:nth-child(3) {
    border-bottom: 8px solid rgb(3, 170, 170);
    animation: rotate3 2s linear infinite;
  }
    
    @keyframes rotate3 {
      from {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
      }
    
      to {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
      }
    }
    
  #ring:nth-child(4) {
    border-bottom: 8px solid rgb(207, 135, 1);
    animation: rotate4 2s linear infinite;
  }
    
    @keyframes rotate4 {
      from {
        transform: rotateX(70deg) rotateZ(270deg);
      }
    
      to {
        transform: rotateX(70deg) rotateZ(630deg);
      }
    }
    /* Improving visualization in light mode */


  .textheader{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 25px;
    /* color:darkviolet; */
    /* color:rgb(203, 36, 161); */
    color:white;
  }
  .textheader:hover{
    color:rgb(203, 36, 161);
  }

.bodycolor{
  background-color:  rgb(242, 236, 210); 
  /* background-color: white; */
}
.police{
  font-family: Georgia, 'Times New Roman', Times, serif;
}
 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }




.footer {
  background-color: burlywood;
  color: black;
  padding: 20px 0;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}
.footer-column h3 {
  border-bottom: 1px solid #777;
  padding-bottom: 10px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin: 10px 0;
}
.footer-column ul li a {
  color: black;
  text-decoration: none;
}
.footer-column ul li a:hover {
  text-decoration: underline;
}
.social-icons {
  display: flex;
  justify-content: center;
}
.social-icons a {
  color:blue;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
}
.social-icons a:hover {
  color: #ddd;
}
@media (max-width: 600px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }
}
