/* Light mode styles (default) */
body {
  background-color: white;
  color: black;
  font-family: "Times New Roman", Times, serif;
  padding: 15px;
}

button {
  padding: 10px 20px;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 15px;
}

.dark_mode {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  display: inline;
  margin-right: 12px;
  margin-top: 40px;
}

.content {
  margin-top: 5px;
  line-height: 0.8;
}

/* Dark mode styles */
.dark-mode {
  background-color: #121212;
  color: #ffffff;
}
