body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

.brand {
    text-align: center;
    background-color: #f2f2f2;
    padding: 10px 0;
}

.brand h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}
.navbar {
    /*position: fixed;*/
    top: 10%;
    height: 7%;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    text-align: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 20px 15px;
    font-size: 250%;
}


.content {
    padding-top: 0.8%;
    display: flex;
    justify-content: center;
}

.columns {
    display: flex;
    width: 80%;
    margin-top: 0.1%;
}

.text-column,
.fade-in-fwd {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-column {
    flex: 1;
}

.fade-in-fwd {
    width: 60%; 
}

.fade-in-fwd img {
    width: 100%;
    height: auto;
}

.text-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%; 
}

.animated-text {
    opacity: 0;
    max-width: 80%; 
}

.fade-in-fwd {
    width: 60%; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%; 
}

.fade-in-fwd img {
    width: 100%;
    height: auto;
}

.text-focus-in {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}


 @-webkit-keyframes text-focus-in {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes text-focus-in {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }

  .circle-container {
    display: flex;
    justify-content: space-around;
    margin-top: 4%;
  }
  
  .circle {
    width: 100px; 
    height: 100px; 
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.4);
  }
  
  .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
  }
  
  .circle:hover {
    transform: scale(1.2);
  }
  
  .circle:hover img {
    opacity: 0.8;
  }
marquee{
    margin-top: 2%;
    font-size: 20px;
    height: 35px;
    padding-top: 12px;
}  
 
 .h2{
    height: 20%;
    font-size: 250%;
 } 

 h3 {
    text-align: left;
    margin-left: 0%;
    font-size: 250%;
  }
  
.sport{
    text-align: left;
    margin-left: 0%;
    font-size: 250%;
    margin-top: 9%;
}
  .image-container {
    display: flex;
    justify-content: space-between;
    width: 90%; 
    margin: 0 auto;
    padding: 20px 0; 
    margin-top: 1%;
  }
  
  .image-box {
    
    width: 22%; 
    text-align: center;
  }
  
  .image-box img {
    width: 100%;
    height: 140%;
    transition: transform 0.3s ease;
    margin: 1% !important;
  }
  
  .image-box p {
    margin: 5px 0;
  }
  
  .image-box:hover img {
    transform: scale(1.1);
  }

  .image-container1 {
    display: flex;
    justify-content: space-between;
    width: 90%; 
    margin: 0 auto;
    padding: 20px 0; 
    margin-top: 1%;
  }
  
  .image-box1 {
    
    width: 22%; 
    text-align: center;
  }
  
  .image-box1 img {
    width: 100%;
    height: 140%;
    transition: transform 0.3s ease;
  }
  
  .image-box1 p {
    margin: 5px 0;
  }
  
  .image-box1:hover img {
    transform: scale(1.1);
  }

  footer {
    background-color: #f4f4f4;
    padding: 20px 0;
    text-align: center;
    margin-top: 15%;
  }
  
  .footer-content p {
    margin: 0;
  }

  .animated-heading {
    text-align: center;
    animation: fadein 2s;
  }
  
  @keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .fade-in-fwd {
    -webkit-animation: fade-in-fwd 0.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
            animation: fade-in-fwd 0.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  }

@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
            transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
}