* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ol,
ul {
  list-style: none;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

h1 {
  margin-bottom: 20px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("./logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.1;
  z-index: -1;
}
ol {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}
