/* General page styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full screen height */
  background-color: #121212; /* Dark background for dark theme */
  overflow: hidden; /* Hide any overflow */
}

header {
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

h1 {
  color: #ffffff; /* White text for dark theme */
}

/* Position the theme toggle button to the right side, at the top */
.theme-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff; /* White for dark theme */
}

button:focus {
  outline: none;
}

.content {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  align-items: center;
  width: 100%;
}

.button-36 {
  width: 100%; /* Full width of the container */
  max-width: 300px; /* Set a max-width for readability */
  margin: 10px 0; /* Spacing between buttons */
  background-image: linear-gradient(92.88deg, #455EB5 9.16%, #5643CC 43.89%, #673FD7 64.72%);
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 1rem 2rem;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
  transition: all .5s;
  user-select: none;
  -webkit-user-select: none;
}

.button-36:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
  transition-duration: .1s;
}

section.content {
  margin: 0 auto;
  padding: 20px;
}

/* Light theme styling */
body.light-theme {
  background-color: #ffffff;
}

body.light-theme h1, body.light-theme .theme-button {
  color: #000000; /* Black text for light theme */
}

/* Dark theme styling */
body.dark-theme {
  background-color: #121212;
}

body.dark-theme h1, body.dark-theme .theme-button {
  color: #ffffff;
}
