body {
  margin: 0;
  font-family: 'Poiret One', sans-serif;
  background: #f0fef7;
  color: #07382c;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
}

body.dark {
  background: #00383c;
  color: #daf7b3;
}

header {
  background-color: #98f9cf;
  padding: 1.5em;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  position: relative;
}

header button#theme-button {
  position: absolute;
  top: 1em;
  right: 1em;
  background: transparent;
  border: none;
  font-size: 0.5em;
  cursor: pointer;
  color: #000000;
}

body.dark header button#theme-button{
    color: white;
}

body.dark header {
  background-color: #008089;
}

main {
  flex: 1;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro p {
  font-size: 2em;
  margin-bottom: 1em;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.btn {
  background-color: #98f9cf;
  color: black;
  padding: 0.7em 1.2em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #7dcba9;
}

.quote-section button {
  margin: 0.5em;
  padding: 0.6em 1em;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  background: #75dcb1;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.quote-section button:hover {
  background: #7dcba9;
}

#quote-box {
  background: #ffffff;
  border-left: 4px solid #98f9cf;
  padding: 1em 1.5em;
  margin-bottom: 1.5em;
  font-style: italic;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

body.dark #quote-box {
  background: #3c3c3c;
  border-left: 4px solid #daf7b3;
}

footer {
  text-align: center;
  padding: 1em;
  background-color: #98f9cf;
  font-size: 0.9em;
}

body.dark footer {
  background-color: #008089;
}
