:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  font-family: Arial, sans-serif;
  background: #f7b4ff;
}

.background {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 145vmax;
  height: 145vmax;
  background-image: url("/background.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(1px);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  animation: slow-spin 63s linear infinite;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.center-logo {
  width: 1000px;
  height: auto;
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
}

@media (max-width: 1919px) {
  .center-logo {
    width: clamp(360px, 52.083vw, 1000px);
  }
}

@keyframes slow-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
