@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
* {
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: white;
}

@keyframes fade {
  to {
    opacity: 1;
  }
  from {
    opacity: 0;
  }
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  justify-content: space-around;
  background: #111111;
  animation-name: fade;
  animation-duration: 4s;
}

.container {
  width: 90%;
}
.container__nav {
  padding: 1rem;
  display: flex;
  gap: 2rem;
  height: 500px;
}
.container__nav__left {
  display: flex;
  width: 50%;
  padding: 1rem;
}
.container__nav__right {
  width: 50%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.container__nav__right img {
  width: 40%;
}
.container__nav__right ul {
  list-style: none;
  display: flex;
  width: 100%;
  margin-top: 1rem;
  justify-content: space-around;
  gap: 2rem;
}
.container__nav__right ul li a {
  font-size: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.52);
  padding: 0.5rem;
  transition: 0.3s;
}
.container__nav__right ul li a:hover {
  border: 2px solid rgb(255, 255, 255);
}
.container__nav__right h1 {
  font-size: 40px;
}
.container__nav__right h1 span {
  position: relative;
}
.container__nav__right h1 span:after {
  content: "";
  bottom: 0;
  height: 3px;
  position: absolute;
  width: 100%;
  background: #ed8651;
  right: 0;
}

.list {
  display: flex;
  list-style: none;
  flex-direction: column;
  justify-content: space-around;
}
.list__item__links {
  text-decoration: none;
  font-size: 75px;
  font-family: "Bebas Neue", sans-serif;
  opacity: 0.3;
  transition: 0.3s ease-in-out;
  background: linear-gradient(to right, #ffffff 60%, #131313 100%);
  -webkit-background-clip: text;
  margin-top: 10px;
  -webkit-text-fill-color: transparent;
}
.list__item__links:hover {
  padding: 30px;
  opacity: 1;
  -webkit-text-fill-color: initial;
  color: white;
}

.fab {
  color: #ed8651;
}

@media screen and (max-width: 1240px) {
  .list__item__links {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  body {
    height: auto;
  }
  .container {
    padding: 0;
  }
  .container__nav {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
  }
  .container__nav__left {
    width: 100%;
  }
  .container__nav__right {
    width: 100%;
  }
  .container__nav {
    height: 100%;
  }
  .container__nav__right img {
    width: 100%;
  }
  .container__nav__right h1 {
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
