* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: url('bg_1.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}
.container {
  max-width: 600px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.h1 {
  font-size: 2.5em;
  color: #c18a3d;
  margin-bottom: 20px;
}
.p {
  font-size: 1.2em;
  color: #c18a3d;
  margin-bottom: 30px;
  line-height: 1.6;
}
.button {
  display: inline-block;
  background: #ffffff;
  color: #4caf50;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.button:hover {
  background: #81c784;
  color: #ffffff;
}
@media (max-width: 768px) {
  .h1 {
    font-size: 2em;
  }
  
  .p {
    font-size: 1em;
    color: #ffffff;
  }
  
  .button {
    padding: 10px 15px;
  }
}
