html,
body {
  font-family: "Kumbh Sans", serif;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #fffbf8;
}

.main-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 95vh;
}

.content-container {
  justify-content: center; /* Center horizontally */
  text-align: center;
}

h1 {
  font-size: 20px;
  color: #f85c57;
  margin: 0;
  font-weight: 600;
  margin: 20px;
}

p {
  max-width: 800px;
  font-size: 16px;
  color: #2b160a;
  font-weight: normal;
  margin: 0;
  margin: 20px;
}

#day-container {
  margin: 40px 0 40px 0;
  p {
    margin: 3px;
  }

  #day {
    color: #E85444;
    font-weight: bold;
  }
}

button {
  font-size: 20px;
  color: white;
  background-color: #E85444;
  height: 51px;
  width: 136px;
  border: none;
  border-radius: 32px;
}

button:hover {
  background-color: #e75747;
}

/* Define the dark theme */
body.dark-mode {
  background-color: #272323;
}

body.dark-mode p {
  color: #ffdbca;
}

body.dark-mode button {
  color: #272121;
}
