* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
body{
  background: url(wp2.jpg);
}
header {
  position: sticky;
  top: 0;
  padding: 1em;
  display: flex;
  z-index: 100;
  justify-content: space-between;
  background: #0d1b2a;
  align-items: center;
  transition: 0.5s ease;
  overflow: hidden;
}
header > h1 {
  font-style: italic;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.801);
  font-size: 2rem;
  color: white;
}
nav {
  flex-direction: column;
  align-items: center;
}
nav > ul.ul {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0%;
  top: 4.4em;
  background: #0d1b2a;
  width: 50%;
  visibility: hidden;
  opacity: 0%;
  height: 120vh;
  text-align: center;
  gap: 2em;
  padding: 1em;
  transition: 0.3s;
  align-items: center;
}
nav > ul.ul.active {
  visibility: inherit;
  opacity: 100%;
  right: -1px;
}
nav > ul > li > a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  transition: 0.5s;
  border-radius: 3em;
}
.bar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
  border-radius: 2em;
}
.hamburger {
  cursor: pointer;
  display: block;
  animation: ham 1s ease-in-out 1;
}
@keyframes ham {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(0);
  }
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.iden {
  display: flex;
  align-items: center;
  gap: 2em;
}
header > .iden > img {
  width: 3em;
  border-radius: 5em;
  aspect-ratio: 4 / 4;
  animation: fade 0.5s ease-out 1 forwards;
}
@keyframes fade {
  from {
    opacity: 0;
    z-index: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    z-index: 1;
    transform: translateY(0);
  }
}
header > h1 {
  font-family: galaksi;
  letter-spacing: 0.5em;
  color: white;
  text-transform: uppercase;
  animation: fade 1s ease-out 1;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}
main > h1 {
  font-size: 4rem;
  background: linear-gradient(45deg, white, magenta, yellow, magenta, white);
  background-clip: text;
  font-family: galaksi;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(93, 83, 238, 0.432);
  animation: rainbow 2.5s linear infinite forwards;
}
main>h2{
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
@keyframes rainbow {
  to {
    background-position: 200%;
  }
}
