
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: 'Rustica', sans-serif;
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

.container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f2f2f2;
  z-index: 1000;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #2b2b2b;
}

h1, h2, h3 {
  margin: 0; /* Remove default margins */
}
h1 {
  margin-top: 10px;
  margin-bottom: 5px; /* Adjust bottom margin for space below the h1 */
}
h2, h3 {
  margin-bottom: 5px; /* Adjust bottom margin for space below each h2 */
}

.button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}

.button:hover {
  background-color: #0056b3;
}

.main {
  padding: 20px;
  opacity: 1;
  transition: opacity 1s ease-in;
}

.main.invisible {
  opacity: 0;
}

.card {
  offset-position: revert;
  offset-position: bottom 10px right 20px;
}