
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #674790;
}

header {
  float: right;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #e30b07;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  float: none;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #e9a513;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #007bff;
}

main {
  text-align: center; 
  padding: 20px;
  
}
 h1 {
  color: #4d07e3;font-size: xx-large;
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
  }
  .loader-text { 
    text-shadow: 2px 1px 5px grey; 
    font-size: 4em; 
    text-align: center; 
    animation: pulsate 0.9s ease-in-out infinite both;
  } 
  @keyframes pulsate { 
    0% { 
      transform: scale(1); 
    } 
    50% { 
      transform: scale(0.9); 
      color:blue; 
    } 
    100% { 
      transform: scale(1); 
      color: grey; 
    } 
  }

h2 {
    color: #ef0d0d;
    font-family: "Oleo Script Swash Caps", system-ui;
    font-weight: 400;
    font-style: normal;
  
}

h3 {
   color: #e9a513;
   font-family: "Comic Neue", cursive;
   font-weight: 400;
   font-style: normal;
   margin-bottom: -15px;
   
}
img {
  max-width: 50%;
  height: auto;
  
}


video {
 margin-top: -1em;
  max-width: 100%;
  height: auto;

   }
  
  
  @keyframes animatedimg { 
    0% { 
      transform: scale(1) translateY(0); 
      transform-origin: 50% 16%; 
    } 
    100% { 
      transform: scale(1.25) translateY(-15px); 
      transform-origin: top; 
    } 
  } 
  .img {
    animation: animatedimg 5s ease-out infinite;  /* Added 'infinite' to make it loop */
  }
  
  @keyframes rotate-scale { 
    0% { 
      transform: scale(1) rotateZ(0); 
    } 
    50% { 
      transform: scale(2) rotateZ(180deg); 
    } 
    100% { 
      transform: scale(1) rotateZ(360deg); 
    } 
  } 
  .rotate-and-scale { 
    animation: rotate-scale 0.65s linear infinite;  /* Added 'infinite' to make it loop */
    width: 300px;
  }

footer {

  text-align: center;
  padding: 3px;
  color: rgb(20, 1, 1);
  font-size: x-large;
  font-family: 'Times New Roman', Times, serif;
}

  

