body {
  font-family: Arial, sans-serif;
  background-color: #FFFBD5;
  color: black;  
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;  
  align-items: center;  
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-size: 22px;  
}


/* Container for the main content */
.jspsych-content {
  max-width: 80%;
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  line-height: 1.5; /* Improved readability */
  padding: 20px;
}


/* Aligning middle content */
.jspsych-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jspsych-middle {
  align-items: center;
}

/* Style the button */
.jspsych-display-element button {
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 20px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(145deg, #d0d0d0, #a0a0a0);
  color: #FFFBD5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Add spacing between the buttons */
.jspsych-display-element .jspsych-audio-button-response-button {
  margin: 10px;  /* Add space between buttons */
  padding: 10px 20px;  /* Increase padding inside the buttons */
  font-size: 20px;  /* Ensure text size is large enough */
}


/* Hover effect for button */
.jspsych-display-element button:hover {
  background: linear-gradient(145deg, #a0a0a0, #d0d0d0);
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

/* Active state for button */
.jspsych-display-element button:active {
  background: #909090;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(2px);
}
