body {
  height: 400px;
  width: 100%;
  background-color: #0b0c0f;
  color: white;
  margin: 0rem;
  overflow: hidden;
  position: relative;
  font-family: "Inter", "Noto Sans", sans-serif;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* body[data-md-color-scheme="default"] body {
  background-color: white;
  color: black;
}

body[data-md-color-scheme="slate"] body {
  background-color: #0b0c0f;
  color: white;
} */

a {
  color: inherit;
  text-decoration: none;
}

/* ======= Image Track ======= */

.image-track {
  background-color: aliceblue;
}

#image-track {
  display: flex;
  gap: 4vmin;
  position: absolute;
  top: 80%;
  left: 35%;
  transform: translate(0%, -50%);
}

#image-track .image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#image-track .image {
  width: 350px;
  height: 500px;
  object-position: 100% 50%;
  object-fit: cover;
}

#image-track .image-block p {
  text-align: center;
  font-size: 1rem;
  width: 100%;
}

#image-track .image-block a {
  color: #e03030;
}
