@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,700&display=swap');

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

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-image: url("imagenes/textura.jpg");
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: top left;
}

.main-layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-start;
}

.content-container {
  display: flex;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.text-container {
  flex: 1;
  overflow: hidden;
}

.text-container h1 {
  font-size: 1.72vw;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0.5vw;
}

.text-container p {
  font-size: 0.86vw;
  text-align: justify;
  text-indent: 1.2vw;
  line-height: 1.5;
  margin-bottom: 0.4vw;
}

footer {
  padding: 0 0 20px 0;
  text-align: center;
}

footer p {
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: #2e2b2b;
}

button {
  position: fixed;
  bottom: 20px;
  right: 25px;
  padding: 8px 18px;
  background-color: #0d865f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 2.0);
  cursor: pointer;
}
