* {
    margin: 0;
    padding: 0;
    font-family: Helvetica;
    box-sizing: border-box;
}
body, html{
    overflow: hidden;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #000;
    background-image: url(images/bg.png);
    background-size: 25%;
    font-family: Helvetica;
    font-size: 14px;
    box-sizing: border-box;
}
footer {
    color: #fff;
    font-family: Helvetica;
    width: 85%;
    margin: auto;
    padding: 35px 0;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: flex-end;
}
.about {
    width: 100%;
    padding: 100px 0px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.about img {
    height: auto;
    max-width: 420px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.about-text {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.about-text h1 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
}

.about-text p {
    color: #fff;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 15px;
    margin-bottom: 45px;
}

.about h2 {
    color: #fff;
    text-align: center;
}

.container {
    text-align: center;
    margin-top: 20px;
}

button {
    background-color: rgb(0, 0, 0);
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 10px;
}

button:hover {
    background: transparent;
    border: 2px solid white;
    cursor: pointer;
}


@media only screen and (max-width: 480px) {
    .about img {
        max-width: 250px;
    }
    .about-text {
        padding: 0 20px;
    }
}
header{
    height: 60px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .banner{
      width: 100%;
      transition: 0.2s all linear;
      filter: invert(100%);
  }
  
  .banner.alt-color {
      filter: invert(0%)
  }
  .menu-icon {
    display: none;
  }
  
  .menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #000; 
    transition: all 0.3s;
  }
  
  .menu-icon.active span {
    background-color: #fff;
  }
  .navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
  }
  .logo{
      width: 120px;
      cursor: pointer;
  }
  .navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
  }
  
  .navbar ul li::after {
    content: '';
    height: 2px;
    width: 0;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.5s;
  }
  
  .navbar ul li:hover::after {
    width: 100%;
  }
  
  .navbar ul li.active::after {
    width: 100%;
  }
  
  .logo {
    width: 120px;
    cursor: pointer;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: #000;
    font-family: Helvetica;
  }
  .social-media-icons{
    letter-spacing: 5px;
    font-size: 15px;
  }
a:link {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
}
a:visited {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
  }
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
      position: fixed;
      top: 30px;
      right: 15px;
      z-index: 1001;
      cursor: pointer;
    }
  
    .navbar {
      padding: 35px 20px;
    }
  
    .navbar ul {
      position: fixed;
      top: 0px;
      left: 0;
      height: calc(100vh - 0px);
      width: 100vw;
      background-color: #000;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
      text-align: center;
      z-index: 1000;
      padding: 0;
    }
  
    .navbar ul.active {
      transform: translateX(0);
    }
  
    .navbar ul li {
      margin: 20px 0;
      width: 100%;
    }
  
    .navbar ul li a {
      display: block;
      font-size: 24px;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      text-decoration: none;
      padding: 10px 0;
      width: 100%;
      box-sizing: border-box;
    }
  
    .logo {
      width: 120px;
      margin-bottom: 20px;
    }
  
    .images {
      padding: 30px 0;
    }
  
    .navbar ul li::after {
      display: none;
    }
  }

  .social-page {
    height: calc(100vh - 60px);
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: flex-start;  
    overflow-y: auto;   /* <-- this is the important part */
  }

.social-links {
  width: clamp(30%, 40vw, 90%);
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 12px 20px;
  font-size: 15vw;
  transition: 0.2s ease;
  text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.091);
}

.social-link img {
  width: 22px;
  height: 22px;
}

/* mobile scroll */
@media (max-width: 768px) {
  .social-page {
    height: calc(100vh - 60px);
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;   /* <-- this is the important part */
  }


  .social-links {
    width: 90%;
  }
}
@keyframes shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-2px, -1px); }
  80% { transform: translate(2px, 1px); }
  100% { transform: translate(0, 0); }
}
.social-link:hover {
  animation: shake 0.3s infinite;
}
