@font-face {
  font-family: Lalezar-Regular;
  src: url("../assets/fonts/Lalezar-Regular.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Lalezar-Regular, Arial, Helvetica, sans-serif;
}

*::selection {
  background: #268dc3;
  color: #f6f6f6;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/imgs/bg.webp");
  background-size: cover;
  background: #f5f5f5;
}

.logo {
  width: 300px;
  margin: 16px 0;
}

.white-filter {
  /* filter: brightness(0) saturate(100%) invert(100%) sepia(26%) saturate(38%)
    hue-rotate(75deg) brightness(111%) contrast(93%); */
}

.shapes {
  width: 50vw;
  position: absolute;
  top: -20%;
  right: -15%;
  opacity: 0.75;
}

.social {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.username {
  font-size: 14px;
  margin: 0 6px;
  color: #f6f6f6;
}

.icons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 14px;
  margin-top: 22px;
}

.text {
  text-align: center;
  color: #242424;
  line-height: 38px;
  font-size: 24px;
}

@media (max-width: 480px) {
  .logo {
    width: 200px;
  }

  .shapes {
    width: 100vw;
    position: absolute;
    top: -5%;
    right: -36%;
    opacity: 0.75;
  }
}

@media (max-width: 1024px) and (min-width: 481px) {
  .shapes {
    width: 70vw;
    position: absolute;
    top: -5%;
    right: -36%;
    opacity: 0.75;
  }
}

span {
  position: relative;
}

span::before,
span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #268dc3;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

span::before {
  top: -4px;
  transform-origin: center right;
}

span:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
}

span::after {
  bottom: -4px;
  transform-origin: center left;
}

span:hover::after {
  transform-origin: center right;
  transform: scaleX(1);
}
