@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

body {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-weight: 500;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  height: 100vh; 
  background-color: white;
}

.dark-mode-img {
  display: none;
}

.light-mode-img {
  display: block;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    color: white;
  }

  .light-mode-img {
    display: none;
  }
  
  .dark-mode-img {
    display: block;
  }
}

.fixed-top {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.top-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.top-right {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3%;

}

.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3%;

}

.bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3%;

}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}