body {
  margin: 0;
  min-height: 100vh;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

a,
 a:visited {
  color: #7fffd4;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
 a:focus,
 a:active {
  color: #40e0d0;
  text-decoration: underline;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("background.jpg") center/cover no-repeat;
  filter: blur(12px);
  z-index: -1;
}
