@import "https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.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;
}

.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.5);
  backdrop-filter: blur(1px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Scrollable if content is too long */
  overflow-y: auto;
  overflow-x: hidden;
  
  /* Typography */
  font-size: 16px;
  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;
  }
}

/* Custom scrollbar */
.content::-webkit-scrollbar {
  width: 8px;
}

.content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
