* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  background-image: url("background.png");
  background-size: cover;
}
body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5764705882);
}

.container {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 10px;
}

.logo {
  margin-bottom: 10px;
}
.logo img {
  width: 600px;
  max-width: 90%;
  height: auto;
}

@media (max-width: 768px) {
  .logo img {
    width: 300px;
  }
}

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


.line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.line hr {
  width: 150px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.662745098);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */