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;
  }
}
.work-h1 {
  margin: 0;
  text-align: center;
  background: linear-gradient(to bottom, #9932ff 30%, #ff38df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6rem;
  font-weight: bold;
  z-index: 99;
}
.about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
  animation: 1s ease-out 0s 1 intro;
}
@keyframes intro {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.shanwill {
  background: linear-gradient(to bottom, #24ff00 30%, #fff500);
  width: 40%;
  height: auto;
  padding: 30px 10px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.shanwill img {
  width: 50%;
  height: auto;
  border-radius: 20px;
  border: 5px solid #000;
  filter: grayscale(100%);
}
.info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
.info h3 {
  color: #000;
}
.info p {
  color: #128100;
  font-weight: 600;
  font-size: 1.2rem;
}
.info h3,
p {
  margin: 0;
}
.button-group {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 20px 0px;
}
.button-group a {
  text-decoration: none;
}
.git {
  font-weight: 600;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 10px;
  padding: 5px 62px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}
.git:hover {
  background: rgb(32, 32, 32);
  transition: all 0.3s ease-in-out;
}

.aux {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to bottom, #ff0099 30%, #7e13f8);
  text-align: center;
  border-radius: 10px;
  border: 4px solid black;
  padding: 5px 50px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}
.aux:hover {
  background: linear-gradient(to bottom, #ff3ab0 30%, #963bff);
  transition: all 0.3s ease-in-out;
}

.resume {
  font-weight: 600;
  color: #000;
  background: linear-gradient(to bottom, #2965f1 30%, #00ff9d);
  text-align: center;
  border-radius: 10px;
  border: 4px solid black;
  padding: 5px 50px;
  transition: all 0.3s ease-in-out;
}
.resume:hover {
  background: linear-gradient(to bottom, #5688fd 30%, #62ffc3);
  transition: all 0.3s ease-in-out;
}

.arsenal {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-uneven {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.row {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-self: center;
}
.column {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.card {
  width: auto;
  height: 100%;
  color: #000;
  background: #fff;
  border-radius: 20px;
  padding: 2em;
  margin: 15px;
}
.card-content {
  background: #62ffc3;
  border-radius: 15px;
  height: 200px;
}
/* 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;
  }
  .work-h1 {
    top: 28%;
    font-size: 3rem;
    font-weight: 800;
  }
  .shanwill {
    width: 80%;
    flex-direction: column;
    align-items: center;
  }
  .shanwill img {
    width: 80%;
  }
  .row {
    flex-direction: column;
  }
  .column {
    width: 100%;
  }
}

/* End mobile */

