* {
      margin: 0; padding: 0; box-sizing: border-box;
    }
    body, html {
      height: 100%;
      margin: 0;
      font-family: 'Bad Script', cursive;
      color: #eee;
      background: url('./images/BackgroundColour.jpg') no-repeat center center fixed;
      background-size: cover;
      min-height: 100vh;
    }

    p {
      font-size: 1.25rem;
      line-height: 1.6;
      color: #222;
      margin-bottom: 1rem;
      font-weight: 400;
    }
    em {
      text-transform: uppercase;
      color: #FF6E40;
      font-weight: 700;
      font-style: normal;
    }
    h1 {
      font-size: 2.5rem;
      color: #333;
      text-align: center;
      margin-bottom: 1.25rem;
    } 
    h2 {
      color: #000000;
    } 
    .biography {
      background-color: rgba(255, 255, 255, 0.8);
      padding: 3.75rem 2.5rem;
      margin-top: 2.5rem;
      font-family: 'Bad Script', cursive;
      color: #222;
      line-height: 1.8;
    }

    .biography h2 {
      font-size: 2.5rem;
      color: #f0c040;
      margin-bottom: 1.25rem;
      text-align: justify;
    }
    .header-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%; 
      padding: 3.75rem 2.5rem;
      gap: 2.5rem;
      flex-wrap: wrap;
      background-color: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(5px);
      color: #222;
      box-sizing: border-box;
    }
    .sidebar {
      height: 100%; 
      width: 0; 
       max-width: 80vw;
      position: fixed; 
      z-index: 100; 
      top: 0;
      left: 0;
      background-color: pink; 
      overflow-x: hidden; 
      transition: 0.3s; 
      padding-top: 3.75rem;
    }
    .sidebar a {
      padding: 0.625rem 1.25rem;
      text-decoration: none;
      font-size: 1.5rem;
      color: white;
      display: block;
      transition: 0.3s;
    }
    .sidebar a:hover {
      background-color: #ff69b4; 
    }
    .sidebar .closebtn {
      position: absolute;
      top: 0.625rem;
      right: 1.25rem;
      font-size: 2rem;
      margin-left: 3.125rem;
      color: white;
      cursor: pointer;
    }
    
    .nav-link.active {
      color: white;
      background-color: orange;
      border-radius: 5px;
    }
    .openbtn {
      position: fixed;
      top: 0.625rem;     
      left: 0.625rem;    
      font-size: 1.5rem;
      cursor: pointer;
      background-color: pink;
      border: none;
      color: white;
      padding: 0.625rem 0.938rem;
      border-radius: 0.313rem;
      z-index: 101;  
    }
    .welcome-left {
      flex: 1;
      min-width: 12.5rem;
    }

    .welcome-left h1 {
      font-family: 'Bad Script', cursive;
      font-size: 3.5rem;
      color: #FF6E40;
      letter-spacing: 0.188rem;
      margin: 0;
      text-align: left;
    }
    .center-image {
      /* flex: 0 0 25rem;  */
      flex: 0 0 auto;
      display: flex;
      justify-content: center;
    }

    .center-image img {
        max-width: 100%;
        height: auto;
        width: 25rem;
        object-fit: cover;
        border-radius: 50%;
        border: 0.25rem solid #FF6E40;
        box-shadow: 0 0 1.563rem #FF6E40;
        transition: transform 0.3s ease;
    }

    .center-image img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 2.188rem #FF6E40;
    }
    .text-right {
      flex: 1;
      min-width: 15.625rem;
      color: #222;
      font-family: 'Bad Script', cursive;
      font-size: 1.25rem;
      line-height: 1.6;
      text-align: left;
    }
    .text-right em {
      text-transform: uppercase;
      color: #FF6E40;
      font-weight: 700;
      font-style: normal;
    }
    .bio-container {
      max-width: 50rem;
      margin: 2.5rem auto 0 auto;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 3.75rem 2.5rem;
      font-family: 'Bad Script', cursive;
      color: #222;
      line-height: 1.8;
      text-align: justify; 
    }


    #backToTopBtn {
        display: none; 
        position: fixed;
        bottom: 2.5rem;
        right: 1.875rem;
        z-index: 99;
        font-size: 1.125rem;
        border: none;
        outline: none;
        background-color: #ff69b4;
        color: white;
        cursor: pointer;
        padding: 0.75rem 1rem;
        border-radius: 0.625rem;
        transition: opacity 0.3s ease;
    }

    #backToTopBtn:hover {
     background-color: #ff1493;
    }

    @media (max-width: 768px) {
            .header-wrapper {
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
            text-align: center;
        }

        .welcome-left h1 {
            font-size: 2rem;
            text-align: center;
        }

        .center-image img {
            width: 12rem;
            height: 12rem;
        }

        .text-right {
            font-size: 1rem;
            padding: 1rem;
            text-align: center;
        }

        .biography {
            padding: 2rem 1rem;
        }

        .bio-container {
            padding: 2rem 1rem;
            margin: 1rem;
        }

        .openbtn {
            font-size: 1rem;
            padding: 0.5rem 0.75rem;
        }

      h1 {
        font-size: 2rem;
    }

    .text-content,
    .about-content,
    .skill-box {
        max-width: 95%;
        padding: 1rem;
        font-size: 1rem;
    }

    .tall-image-gallery {
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
    }

    .tall-image-gallery img {
        width: 5rem;
        height: 10rem;
    }

    .image-grid-gallery {
        grid-template-columns: 1fr; /* stack images vertically */
        gap: 1.5rem;
    }

    .image-grid-gallery img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .timeline {
        padding: 1rem 0;
    }

    .timeline-item {
        width: 50%;
        padding: 1rem;
    }

    .timeline-item img {
        width: 100%;
        max-width: 10rem;
        height: auto;
    }

    .achievements-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .achievements-flex .about-content {
        max-width: 100% !important;
        width: 90% !important;
        margin: 0 auto !important;
    }

    .achievements-flex .image-grid-gallery {
        width: 90% !important;
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 1rem !important;
    }
}

.navbar {
      display: flex;
      justify-content: flex-end; /* Aligns content to the right */
      background-color:  rgba(255, 255, 255, 0.8);
      padding: 14px 20px;
    }

    .navbar a {
      color:  rgb(85, 7, 7);
      padding: 8px 16px;
      text-decoration: none;
      text-align: center;
    }

    .navbar a:hover {
      color: white;
       background-color: #ff1493;
      border-radius: 4px;
    }

.about-content {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: 0.625rem;
  line-height: 1.8;
  text-align: justify;
font-size: 1.05rem;
}

.tall-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-shrink: 0;
}

.tall-image-gallery img {
  width: 3.125rem;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.4s ease, z-index 0.4s;
  box-shadow: 0 0 0.625rem #f0c040;
  cursor: pointer;
}

.tall-image-gallery img:hover {
  transform: scale(1.6);
  z-index: 10;
}
.image-grid-gallery {
  display: grid;
  grid-template-columns: repeat(2, 12.5rem);
  grid-template-rows: repeat(2, 12.5rem);
  gap: 9.375rem;
  padding: 1.25rem;
}

.image-grid-gallery img {
  width: 12.5rem;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 0 0.625rem #f0c040;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-grid-gallery img:hover {
  transform: scale(1.5);
}
.achievements-section {
  margin-top: 5rem;
}
.divider-line {
  border: none;       
  height: 0.25rem;          
  background-color:#ff7f87;
  margin: 2.5rem auto;    
  max-width: 37.5rem;     
  border-radius: 0.125rem;  
}
.achievements-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.875rem;
  max-width: 75rem;
  margin: 3.75rem auto;
  padding: 1.25rem;
}

.achievements-section .about-content {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: 0.625rem;
  line-height: 1.8;
  text-align: justify;
font-size: 1.05rem;
}

.achievements-section .image-grid-gallery {
  display: grid;
  grid-template-columns: repeat(2, 12.5rem);
  grid-template-rows: repeat(2, 12.5rem);
  gap: 9.375rem;
  padding: 1.25rem;
}
   .timeline {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  padding: 2.5rem 0 9.375rem 0;
  min-height: 346.875rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  background-color: #ff7f87;
  transform: translateX(-50%);
}
.timeline-item {
  width: 50%;
  position: relative;
  padding: 1.25rem 2.5rem;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item img {
  width: 100%;
  height: auto;
  margin-bottom: 0.625rem;
  border-radius: 0.375rem;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.7); 
  padding: 1.25rem;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.625rem rgba(0,0,0,0.1);
  backdrop-filter: blur(0.625rem);
}
.timeline-text {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 0.938rem;
  padding: 1.25rem;
  color: #000;
  margin-top: 0.625rem;
max-width: 100%;
}

.timeline-text-left     {
 background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 0.938rem;
  padding: 1.25rem;
  color: #000;
  margin-top: 0.625rem;
  max-width: 100%;
float: left;
text-align: left;

}
.timeline-item.left .timeline-content {
  float: right;
  text-align: right;
}

.timeline-item.right .timeline-content {
  float: left;
  text-align: left;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 0;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  position: relative;
}

.timeline-item.left .timeline-content::before {
  right: -2.5rem; 
}
.timeline-item.right .timeline-content::before {
  left: -2.5rem;
}
.timeline-content::before {
  content: '';
  position: absolute;
  top: 40%;
  width: 1.25rem; 
  height: 0.25rem;
  background: #ff7f87;
  transform: translateY(-50%);
}
.timeline-item.left .timeline-content::before {
  right: -1.625rem; 
}

.timeline-item.right .timeline-content::before {
  left: -1.625rem; 
}
.timeline-item img {
  width: 9.375rem;  
  height: auto;  
  border-radius: 0.625rem;  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item img:hover {
  transform: scale(1.5);
  box-shadow: 0 0.25rem 0.938rem rgba(0, 0, 0, 0.3);
}
.skills-section {
  text-align: center;
  padding: 1.25rem;
}

.skills-title {
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
  margin-top: 0;
  color: #333;
}
.skills-container {
  width: 100%;
  max-width: 75rem;  
 margin: 0 auto;     
  display: flex;
  justify-content: center;
  gap: 6.25rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.skill-group {
  flex: 0 0 18.75rem;
  max-width: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.skill-box {
  width: 100%;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.938rem);
  border-radius: 1.25rem;
  box-shadow: 0 0 0.938rem rgba(0,0,0,0.1);
  color: #000;
  font-size: 1.05rem;
  text-align: justify;
}
.skill-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.938rem;
  width: 100%;
}
.skill-icon {
  font-size: 2.5rem;
  color: #FF5E7A;
  flex-shrink: 0;
}
.progress-bars {
  flex: 1;
}

.progress-bar {
  margin-bottom: 0.625rem;
}

.progress-bar span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.313rem;
  color: #333;
}

.bar {
  width: 100%;
  height: 0.875rem;
  background-color: rgba(255, 110, 64, 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
}

.fill {
  height: 100%;
  background-color: #FF6E40;
  border-radius: 0.5rem 0 0 0.5rem;
  transition: width 0.6s ease;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.313rem;
  font-weight: 600;
  color: #333;
}

@media (max-width: 1024px) {
  /* Slightly reduce gaps and padding, but preserve layout */
  .achievements-flex,
  .skills-container {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  /* Skills layout - keep two columns but flexible */
  .skill-group {
    flex: 1 1 40%; /* allow wrapping with roughly 2 per row */
    max-width: 40%;
  }

  .image-grid-gallery {
    grid-template-columns: repeat(2, minmax(10rem, 1fr));
    gap: 4rem;
    padding: 1rem;
  }

  .timeline-item {
    width: 50%;
    padding: 1.25rem;
    text-align: inherit;
    float: none;
    left: auto;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    float: none;
    text-align: inherit;
  }

  .timeline-item .timeline-content::before {
    display: block;
  }
}

  /* Achievements: stack text above images */
    .box {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 0.938rem;
   margin: 0 auto;
  padding: 1.25rem;

  width: 50rem;    
  height: 50rem;   

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
  
  color: #fff;
  box-shadow: 0 0.5rem 2rem 0 rgba(31, 38, 135, 0.37);
  border: 0.063rem solid rgba(255, 255, 255, 0.18);
  overflow: hidden;  
}
/*from contact */
.contact-title {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.25rem;
  font-family: 'Bad Script', cursive;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
}

#contactForm label {
  color: #fff;
  font-weight: bold;
  width: 100%;
}

#contactForm input,
#contactForm textarea {
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 0.063rem solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  width: 37.5rem;
  background-color: #f9f9f9;
  color: #333;
}

#contactForm button {
  background-color: #ffffffcc;
  color: #2c3e50;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactForm button:hover {
  background-color:#ff69b4;
}

.box input[type="text"],
.box input[type="email"],
.box input[type="tel"],
.box input[type="password"] {
  width: 100%;   
  max-width: 100%; 
  padding: 0.625rem;
  border-radius: 0.5rem;
  border: 0.063rem solid #ccc;
  box-sizing: border-box; 
}
.box textarea {
  width: 100%;
  max-width: 100%;  
  height: 7.5rem;    
  padding: 0.625rem;
  border-radius: 0.5rem;
  border: 0.063rem solid #ccc;
  box-sizing: border-box;
  resize: vertical;  
}
.button-row {
  display: flex;
  justify-content: center;
  gap: 6.25rem; 
  margin-top: 0.938rem;
  width: 100%;
  margin-top: 1.25rem;
}

.other-contact-methods {
  margin-top: 1.875rem;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 0.75rem;
  color: #FF6E40;
  max-width: 37.5rem;
  text-align: justify;
   margin: 0 auto;
   display: flex;
  flex-direction: column;       
  justify-content: center;      
  align-items: center;          
  text-align: center;           
}

.other-contact-methods h3 {
  margin-bottom: 0.938rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.other-contact-methods ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-contact-methods li {
  margin-bottom: 0.625rem;
  font-size: 1.1rem;
}

.other-contact-methods a {
  color: #ffd1dc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.other-contact-methods a:hover {
  color: #ff69b4;
  text-decoration: underline;
}
.contact-methods {
  text-align: center;
  margin-top: 1.875rem;
  color: #fff;
  font-size: 1.2rem;
}

.contact-methods i {
  margin-right: 0.625rem;
  color: #ff69b4;
}
  
@media screen and (max-width: 768px) {
  .box {
    width: 90%;
    height: auto;
    padding: 1rem;
  }

  #contactForm input,
  #contactForm textarea {
    width: 100%;
    font-size: 1rem;
  }

  .button-row {
    flex-direction: column;
    gap: 1rem;
  }

  .other-contact-methods {
    width: 90%;
    padding: 1rem;
  }

  .openbtn {
    padding: 0.5rem 0.75rem;
    font-size: 1.2rem;
  }

  h1, h2.contact-title {
    font-size: 1.75rem;
  }

  .other-contact-methods li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  h1, h2.contact-title {
    font-size: 1.5rem;
  }

  .box {
    padding: 1rem;
  }

  #contactForm label {
    font-size: 0.9rem;
  }

  #contactForm input,
  #contactForm textarea {
    font-size: 0.95rem;
    padding: 0.5rem;
  }

  .other-contact-methods h3 {
    font-size: 1.2rem;
  }

  /* Skills: stack two per row with some margin */
  .skills-container {
    gap: 2rem;
    justify-content: center;
  }

  .skill-group {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .sidebar a {
    font-size: 1.25rem;
  }

}
  /* from Projects*/
  .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch; 
  gap: 1.25rem;
  padding: 1.75rem;
  max-width: 75rem;
  margin: auto;
}

.box-p {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 0.938rem;
  padding: 1.25rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0.5rem 1rem 0 rgba(31, 38, 135, 0.37);
  border: 0.063rem solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 37.5rem) {
  .container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  .box p {
    font-size: 0.9rem;
  }
  .slideshow-container {
    height: 20rem;
  }
}

@media (max-width: 23.4375rem) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.8rem;
  }
  .openbtn {
    font-size: 1.2rem;
    padding: 0.5rem 0.75rem;
  }
  .container {
    padding: 1.25rem;
  }
  .box {
    padding: 0.75rem;
  }
  .slideshow-container {
    height: 18rem;
  }
  iframe {
    width: 100% ;
    height: auto;
    max-width: 100%;
  }
}


.slide, .slide-2, .carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 25rem;
}

iframe, embed {
  width: 100%;
  height: auto ;
  max-width: 476px;
  aspect-ratio: 16 / 9;
}

.discussion h2 {
  margin-bottom: 0.625rem;
  font-size: 1.8rem;
  text-align: center;
}

.discussion p {
  font-size: 1.1rem;
}

.slideshow-container-2 {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* or use cover, depending on your goal */
  display: block;
}
.slide {
  max-width: 100%;
  max-height: auto;
  object-fit: contain; 
  display: none;
  border-radius: 0.625rem;
}
.slide.active {
  display: block;
}

 section {
      margin-bottom: 3.75rem;
    }

.slideshow-container-3 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
   align-items: center;
  justify-content: center;
} 

.slide-2 {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: none;
  transition: opacity 1s ease-in-out;
  border-radius: 0.75rem;
}

.slide-2.active {
  display: block;
}
.slideshow-title {
  text-align: right;
  font-family: 'Bad Script', cursive;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.938rem;
  width: 30%;
}
    .caption {
      text-align: center;
      background-color: #2c3e50;
      color: #fff;
      padding: 0.625rem;
    }

    iframe, embed {
      display: block;
      margin: 1.25rem auto;
      max-width: 90%;
    }

    .media-title {
      text-align: center;
      font-size: 1.5em;
      color: #444;
      margin-top: 1.875rem;
    }

    .presentation-frame {
      width: 90%;
      max-width: 50rem;
      height: 30rem;
    }
#presentations h3 {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 0.938rem;
}

#imageSlide img {
  height: auto;
  object-fit: cover;
  width: 100%;
  max-width: 18.75rem;
  margin: 0 auto;
  display: block;
}
.carousel-slide img {
  display: none;
  width: 100%;
  max-height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
}

.carousel-slide img.active {
  display: block;
}

.carousel-container {
  position: relative;
  max-width: 37.5rem;
  margin: auto;
  text-align: center;
  overflow: hidden;
  background-color: transparent;
} 
#artSlide .slide{
  background-color: #fff;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.7);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.caption {
  margin-top: 0.625rem;
  font-style: italic;
  background-color: transparent;
  color: black;
}

.box img {
  width: 100%;
  height: auto;
  object-fit: cover; 
  display: none;
  border-radius: 0.625rem;
}
.slide {
  width: 100%;
  height: auto;
  max-height: 18.75rem;
  object-fit: contain;
}

.spacer {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border-radius: 0.938rem;
   margin: 0 auto;
  padding: 1.25rem; 

  width: 50rem;    
  height: 2rem;   
  overflow: hidden;  
}