html {
  background-color: #000;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

/* Navbar */
nav {
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav > ul {
  min-width: 35rem;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
nav > ul > li {
  font-size: 24px;
  font-weight: 600;
}
.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in-out;
}
.nav-link.active {
  text-decoration: none;
  color: #fff;
}
.nav-link:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.navbar-name {
  background-image: linear-gradient(
    90deg,
    #6e40aa,
    #963db3,
    #bf3caf,
    #e3419e,
    #fe4b83,
    #ff5e64,
    #ff7747,
    #fb9633,
    #e2b72f,
    #c7d63c,
    #c7d63c
  );
  background-position: 100% 0;
  background-size: 500% 100%;
  transition: background-position 1s linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: bold;
}
.animated {
  animation: 1.75s linear 0s infinite alternate both running textGradient;
}
.transitioned:hover {
  background-position: 0 0;
}
@keyframes textGradient {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0% 0;
  }
}

.column{
  padding: 0px 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
iframe{
  padding: 20px 0px;
  width: 40%;
  border-radius: 20px !important;
  margin: 20px 0px;
  border: 5px solid white;
}

/* End of Navbar */

/* Mobile Breakpoint */
@media (max-width: 992px) {
  nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  nav > ul {
    min-width: 15rem;
    max-width: 20rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-right: 2rem;
  }
  nav > ul > li {
    font-size: 1.25rem;
  }
  .navbar-name {
    font-size: 1.8rem;
  }
    .column {
      padding: 0px 10px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
    }
        iframe {
          padding: 20px 0px;
          width: 90%;
          border-radius: 20px !important;
          margin: 20px 0px;
          border: 5px solid white;
        }
}

/* End mobile */
