* {
  border: 0.1px;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.075rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body * {
  opacity: 0;
  transform: translateY(20px);
}

header {
  margin-top: 8rem;
  margin-left: 2rem;
}

header h1 {
  font-size: 1rem;
}

header p {
  font-size: 0.75rem;
}

.fade-line {
  border: 0.07rem solid white;
  width: 0%;
  margin-top: 2rem;
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

.fade-line {
  animation: expandLine 5s forwards;
  animation-delay: 1s;
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  
  to {
    width: 80%;
    opacity: 1
  }
}

.sec-pages {
  margin-top: 3rem;
}

.sec-pages div {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}

button {
  font-family: inherit;
  background: transparent;
  color: white;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  letter-spacing: 0.1rem;
  transition: opacity 0s ease-out;
}
footer{
  margin-top: 5rem;
  text-align: center;
  margin-bottom: 3rem;
}

footer small {
  color: rgba(255, 255, 255, 0.6);
}
button {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 1.5s ease;
}

button:hover::after {
  width: 100%;
}

button-reverse {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

button-reverse::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: white;
  transition: width 1.5s ease;
}

button-reverse:hover::after {
  width: 0;
  }

a{
  text-decoration: none;
  color: white;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
