@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;500;600;700;800;900&display=swap');

body {
  background-color: black;
  background-size: cover;
  background-position: center;
  transition: 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: blur(5px);
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


#track {
  color: white;
  font-family: 'Geologica', sans-serif;
  text-align: center;
  margin: 50px 0;
  max-width: 320px;
  border-radius: 10%;
}

#track img {
  pointer-events: none;
  margin: 20px 20px 2px;
  border-radius: 10%;
  margin-top: 20px;
}

#track h2 {
  margin: 15px 30px -10px 30px;
}

#track p {
  margin: 20px 0px 20px 0px;
}

@media only screen and (max-width: 460px) {
  #track h2 {
    font-size: 20px;
  }
  }
