:root{
  --base-color: white;
  --icon-color: #222222;
}
.darkmode{
  --base-color: #222222;
  --icon-color: white;
}
*{
  margin: 0;
  padding: 0;
}
body{
  min-height: 100vh;
  background-image: url("../images/background.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
main{
  height: 40vh;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: calc(10px + .8vw);
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer{
  width: 100%;
  bottom: 0;
  padding: 10px;
  color: white;
  left: 0;
  position: fixed;
  width: 100%;
}
#theme-switch{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 5px;
  bottom: 5px;
  width: 50px;
  height: 50px;
  background-color: var(--base-color);
  border-radius: 50%;
}
#theme-switch svg{
  fill: var(--icon-color);
}
#theme-switch svg:last-child{
  display: none;
}
.darkmode #theme-switch svg:first-child{
  display: none;
}
.darkmode #theme-switch svg:last-child{
  display: block;
}