html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  background-image: url('./bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.content {
  max-width: 90%;
  width: 600px;
  padding: 20px;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .logo{
    width: 75%;
    object-fit: cover;
  }
}