@font-face {
  font-family: "Libre Baskerville";
  font-style: bold;
  src: url(/fonts/LibreBaskerville-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: italic;
  src: url(/fonts/LibreBaskerville-Italic.ttf) format("truetype");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: regular;
  src: url(/fonts/LibreBaskerville-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Great Vibes";
  font-style: regular;
  src: url(/fonts/GreatVibes-Regular.ttf) format("truetype");
}

body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  background-color: #fdfaf5;
}

.background {
  background-image: url('fundo.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: rgba(188, 147, 96, 0.2);
  text-align: center;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 90vw;
  max-width: 900px; /* Added max-width */
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.filter-logo {
  width: 5vmin;
  object-fit: contain;
  margin: auto;
}

.boas-vindas {
  font-size: calc(1rem + 0.5vmin);
  color: #805f4c;
  /* background-color: #f5e6d0; */
  display: inline-block;
  padding: 0.3rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-weight: bold;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: calc(6rem + 1vmin);
  font-weight: normal;
  color: #7d675b;
  margin: 0.2rem 0;
}

.data {
  font-size: calc(1rem + 0.5vmin);
  color: #805f4c;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.botoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

button {
  background-color: #f5e6d0;
  color: #805f4c;
  font-family: 'Libre Baskerville', serif;
  font-size: calc(1rem + 0.2vmin);
  border: 2px solid #bfa265;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #e9dbc5;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(73, 64, 56, 0.8);
}

.modal-content {
  background-color: rgba(245, 230, 208, 0.9);
  /* margin: auto auto; */
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 900px; /* Added max-width */
  text-align: center;
  color: #5c4234;
}

.close {
  color: #bfa265;
  float: right;
  font-size: calc(1rem + 2vmin);
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #7d675b;
  text-decoration: none;
}
