@import "bulma-no-dark-mode.min.css";

body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background: white;
  color: black;
}
.container {
  height: 100vh;
  width: 100vw;
  background-color: white;
  background-image: url("/static/artscure.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.box {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1px);
  border-color: #f1f1f1;
  border-style: solid;
}

.content {
  /* Center the content over the image */
  max-width: 80%;
  max-height: 80%;
  padding: 30px;

  /* Make text readable over the image */
  /* background-color: rgba(255, 255, 255, 0.6); */
  /* backdrop-filter: blur(1px); */
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Scrollable if content is too long */
  overflow-y: auto;
  overflow-x: hidden;

  /* Typography */
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #333;
}

.content p {
  margin-bottom: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content {
    max-width: 90%;
    max-height: 85%;
    padding: 20px;
    font-size: 14px;
  }

  .content h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .content h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .content {
    max-width: 95%;
    max-height: 90%;
    padding: 15px;
    font-size: 14px;
  }

  .content h1 {
    font-size: 20px;
  }

  .content h2 {
    font-size: 18px;
  }
}
