*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic Pro', sans-serif;
  background: linear-gradient(
    160deg,
    var(--color-bg) 0%,
    var(--color-bg-deep) 40%,
    var(--color-bg-accent) 100%
  );
  color: var(--color-text);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--spacing-md);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
}
body::before {
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(232, 168, 124, 0.12);
}
body::after {
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(168, 200, 140, 0.1);
}
