* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: white;
}
header {
  width: 100%;
  height: 100vh;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220.10546875%200%200%200%200%200%200.109375%200%200%200%200%200%200.16015625%200%200%200%200%200%200.5859375%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to top, rgba(20, 20, 23, 0.549), rgba(20, 20, 23, 0.549)),
    url('bg.jpg');
  background-color: #f7f8fc;
  background-size: 512px, auto, cover;
  background-position: center, 0% 0%, center;
  background-repeat: repeat, repeat, no-repeat;
}
.logo_img {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: 'Dela Gothic One', cursive;
  color: white;
}
nav {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.menu {
  display: flex;
  gap: 40px;
}

.menu > a {
  position: relative;
  font-size: 20px;
}
.menu > a::after {
  content: '';
  position: absolute;
  height: 2px;
  background-color: red;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}
.menu > a:hover::after {
  width: 100%;
}
.hero_slogen {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

@keyframes main_text_insert {
  0% {
    transform: translateX(-50%);
    opacity: 0;
    scale: 1;
  }
  60% {
    transform: translateX(20%);
    scale: 0.9;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    scale: 1;
  }
}
.main_text {
  font-size: 3.25rem;
  text-align: center;
  padding-bottom: 25px;
  color: white;
  font-family: 'Dela Gothic One', cursive;
  letter-spacing: 0.5rem;
  line-height: 1.25;
  font-weight: 400;
  animation: main_text_insert 0.8s ease-in-out forwards;
}
.sub_text {
  font-size: 1rem;
  text-align: center;
  color: #f7f8fc;
  font-weight: 600;
  padding-top: 10px;
}
