* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  user-select: none;

  cursor: url("../img/Muspekare%202.png"), auto;
}

/* Klickbara element */
a:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
[role="button"]:hover {
  cursor: url("../img/Hover.png"), pointer;
}

/* Image map (viktigt: inget :hover behövs) */
area {
  cursor: url("../img/Hover.png"), pointer;
}

.center-image {
  display: block;

  width: auto;
  height: auto;

  max-width: 80vw;
  max-height: 80vh;
}

@media (max-width: 768px) {
  body {
    background-size: clamp(30px, 8vw, 100px);
  }

  .center-image {
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  body {
    background-size: clamp(25px, 10vw, 80px);
  }

  .center-image {
    max-width: 95vw;
  }
}
