:root {
  --primary: rgb(85 90 146);
  --secondary: rgb(92 93 114);
  --tertiary: rgb(120 83 107);
  --background: rgb(234, 218, 252);
  --surface: rgb(251 248 255);
  --surface-dim: rgb(221, 169, 255);
  --on-surface: rgb(27 27 33);
}

.darkmode {
  --primary: rgb(190 194 255);
  --secondary: rgb(197 196 221);
  --tertiary: rgb(232 185 213);
  --background: rgb(19 19 24);
  --surface: rgb(19 19 24);
  --surface-dim: rgb(37, 37, 45);
  --on-surface: rgb(228 225 233);
}

.header {
    font-family: Roboto;
    background-color: var(--surface-dim);
    padding: 20px;
    margin: 0px;
    text-align: center;
    border-radius: 25px;
}

.header-title {
    margin: 0;
    padding-top: 0;
    font-size: clamp(2rem, 6vw, 4rem);
    font-family: Roboto;
    color: var(--primary);
}

.header-subtitle {
    margin: 0;
    padding-top: 0;
    font-size: clamp(1rem, 3vw, 2rem);
    font-family: Roboto;
    color: var(--on-surface);
}
html, body {
    background-color: var(--background);
    color: var(--on-surface);
    font-family: Roboto;
  }

#theme-switch {
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#theme-switch svg {
  color: var(--on-surface);
}

#theme-switch svg:last-child {
  display: none;
}

.darkmode #theme-switch svg:first-child {
  display: none;
}

.darkmode #theme-switch svg:last-child {
  display: block;
}

#home {
    height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;
}