* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background: #f3e5de;
}

.site-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-image: url("./assets/background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 640px) {
  .site-background {
    background-position: center center;
    background-size: cover;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .site-background {
    background-position: center center;
    background-size: cover;
  }
}

@media (min-width: 1025px) {
  .site-background {
    background-position: center center;
    background-size: cover;
  }
}
