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

/* Existing styles */
body {
  font-family: 'Arial', sans-serif;
  background: url('../images/jorge-ayala-isaza-sculpture-poporo-gallery-view-001.jpg') no-repeat left center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container {
  text-align: center; /* Centering the content */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px; /* Space between the text and the button */
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 20px; /* Space above the button */
}

.btn:hover {
  background-color: #ddd;
}