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

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

.background {
  position: fixed;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: url('fuckoffnosey.png');
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: -1;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

main img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
