 #loader {
                background: none;
            position: absolute;
            left: 50%;
            top: 50%;
            z-index: 1;
            width: 120px;
            height: 120px;
            margin: -76px 0 0 -76px;
            border: 16px solid #f3f3f3;
            border-radius: 50%;
            border-top: 16px solid #3498db;
            -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
          }
          @-webkit-keyframes spin {
            0% { -webkit-transform: rotate(0deg); }
            100% { -webkit-transform: rotate(360deg); }
          }
          
          @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
          }
          
          /* Adds animation */
          .animate-bottom {
            position: relative;
            -webkit-animation-name: animatebottom;
            -webkit-animation-duration: 1s;
            animation-name: animatebottom;
            animation-duration: 1s;
          }
          
          @-webkit-keyframes animatebottom {
            from { bottom:-100px; opacity:0 } 
            to { bottom:0px; opacity:1 }
          }
          
          @keyframes animatebottom { 
            from{ bottom:-100px; opacity:0 } 
            to{ bottom:0; opacity:1 }
          }
        
          #myDiv {
            display: none;
            text-align: center;
          }

          * {
            font-weight: 100;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
        a, .jump,.text-column {
          
         color:black;
         font-weight: 400;
         background: transparent;
        }
        .ctn:hover {
            background: whitesmoke;
            color: #fc036b;
            box-shadow: 2px 2px 2px rgb(221, 216, 216);
        }
        
        .name {
        padding-top:120px;
        }

        body {
          justify-content: center;
          align-items: center;
          text-align: center;
          background:url(./aboutImg.avif);
          background-size:cover;
          background-repeat: no-repeat;
      }
      
      a {
          text-decoration: none;
          color: #fff;
          font-weight: 300;
          font-size: medium;
          padding: 8px 15px;
          background: #ff295717;
          border-radius: 30px;
          justify-content: space-evenly;
      }
      .logo {
          color: #000000;
          font-size: xx-large;
      }
      a:hover {
          padding: 8px 15px;
          border-radius: 30px;
         background-color: #fc036b;
          text-decoration: underline;
          font-weight: bold;
          font-style: italic;
      }

      .footer {
        left: 0;
        top: 0;
        width: 100vw;
        margin-top: 50px;
        justify-content: end;
        align-items: end;
        background-color: rgb(216, 205, 205);
        padding-bottom: 10px;
    }
    .ctn {
        padding:  8px 15px;
        background: #fc036b;
        border-radius: 30px;
        color: whitesmoke;
    }
    .ctn:hover {
        padding:  8px 15px;
        color: #fc036b;
        border-radius: 30px;
        background-color: whitesmoke;
    }
    .active, ul {
        list-style: none;
        color: whitesmoke;
    }

    .active {
      color: #fc036b;
      text-decoration: underline;
      font-weight: bold;
      font-style: italic;
  }
  .active:hover {
      padding: 8px 15px;
      border-radius: 30px;
     background-color: #fc036b;
      text-decoration: underline;
      font-weight: bold;
      font-style: italic;
  }

  .navbar {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      justify-content: space-between;
      padding: 20px;
      color: whitesmoke;
    
  }

  .nav-links a li {
    width: 100%;
      margin: 0 30px;
      color: #fc036b;
  }

  .exhibit-logo img { 
    height: 60px;
    width: 60px;
    border-radius: 10px;
   
  }
  .nav-links {
    display: flex;
    align-items: center;
}
.about-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap:wrap;
    padding: 0;
}

  .image-column {
    justify-content: flex-start;
  align-items: flex-start;
    flex: 1;
    gap: 4rem;
    padding: 10px;
    overflow-y: hidden;
    
}

.top {
    margin: 10px auto; 
    
    box-shadow: #ffcee294;
}

.about-section .image-column img {
  margin-top: 0;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}

/* Right column for the text */
.about-section .text-column {
  flex: 1;
  height:auto;
  border-radius: 30px;
  font-weight: 400;
  padding: 0;
  background-color: none;
  margin: 0 60px;
  justify-content: center;
  align-items: center;
  background-color: #d1c3c38c;
  color:#000000;
}

.about-section .text-column h1 {
  font-size: 5vmin;
 
  color: #000000;

}
.info {
  margin-top: 10px;
}
.about-section .text-column p {
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  
  line-height: 1.6;
  font-weight: 400;
  color: #311e1e;
 
}
.menu-btn {
  position:absolute;
  top: 30px;
  right: 30px;
  width:40px;
  cursor: pointer;
  display: none;
}

.line {
  width: 150px;
  height: 4px;
  background: #fc036b;
  margin: 10px auto;
  border-radius: 5px;
}

/* Mobile responsive */
@media only screen and (max-width: 500px) {
  .about-section {
      
      flex-direction: column;
  }
  
  .about-section .image-column,
  .about-section .text-column {
      margin-left: 0px;
      padding: 0;
      width: 100%;
      align-items: center;
      justify-content: center;
  }

  .about-section .text-column h1 {
      font-size: 2em;
  }

  .about-section .text-column p {
      font-size: 1.1em;
  }
  .about-section .text-column p {
    font-size: 1.1em;
}
.nav-links {
  color: #fc036b;
    border-bottom-right-radius: 30%;
    flex-direction: column;
    width: 100%;
    height: 80vh;
    justify-content: center;
    background-color: #484872;
    margin-top: -900px;
    transition: all 0.5s ease;
}

.menu-btn {
    display: block;
    border-radius: 10px;
}

.mobile-menu {
    margin-top: 0px;
   
}

.nav-links li {
    margin: 30px auto;
}
}