body {
  margin: 0;
  background: #001a00;
  font-family: 'Georgia', serif;
}

.clipboard-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body {
  margin: 0;
  background-image: url('https://i.ibb.co/2YMFpVYb/Untitled-design.png');
  background-repeat: no-repeat;
  background-size: 1700px 770px;
  background-position: center top;
  background-color: #001a00;
  font-family: 'Georgia', serif;
  height: 100vh;
  overflow: hidden;
}

.scroll-area {
  position: absolute;
  top: 200px;  
  left: 1095px; 
  width: 21vw;
  height: 50vh;
  overflow-y: scroll;
  padding: 20px;
  background-color: rgba(236, 237, 240, 0.75);  border-radius: 12px;
  z-index: 2;
}

.quiz-form .question {
  margin-bottom: 24px;
}

.quiz-form button {
  margin-top: 20px;
  padding: 8px 14px;
  font-weight: bold;
  background: #eee;
  border: 1px solid #444;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* allows scroll on small screens */
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
}

.modal-content {
  max-width: 700px;
  max-height: 90vh;
  margin: auto;
  background: white;
  padding: 1rem;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px black;
}
