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

body {
  font-family: "Lato", sans-serif;
  background-image: url(background.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f6d365;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #f6d365;
  transition: background 0.3s ease;
}

.contact:hover {
  background-color: #f6d365;
  color: #000;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}
