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

body,
html {
  height: 100%;
  font-family: "Arial", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("./assets/crep-bg@2x.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.logo {
  margin-bottom: 2rem;
}

.logo img {
  max-width: 400px;
  width: 90%;
  height: auto;
}

.text-content h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.text-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #f4c430;
}

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

  .text-content h2 {
    font-size: 1.5rem;
  }

  .text-content h1 {
    font-size: 2rem;
  }
}
