* {
  box-sizing: border-box;
}

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

body {
  background: #2b0000;
  overflow-x: hidden;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: #2b0000;
}

.creative {
  display: block;
  width: 100%;
  min-height: 100svh;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.creative:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -3px;
}

.creative__image {
  display: block;
  width: 100%;
  min-height: 100svh;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 640px) {
  .creative__image {
    object-fit: cover;
  }
}
