* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
}

.bg {
  background-image: url("bg.jpg") no-repeat center center;
  background-size: cover; /* zoom, fara deformare */
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
  text-align: center;
}

.content {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 90%;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  line-height: 1.5;
}

.footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9em;
  color: #dddddd;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 15px 20px;
  }

  h1 {
    font-size: 1.6em;
  }

  p {
    font-size: 0.95em;
  }
}
