* {
  text-decoration: none;
  color: black !important;
}

body {
  font-family: "cutoutVF", "cutout", sans-serif;
  background-color: black;
  color: white;
}

h7 {
  font-size: 27vw;
  font-variation-settings: "wght" 100;
  margin-bottom: 3vh;
  margin-top: 0.5vw;
  text-align: center;
  color: white;
}

h8 {
  font-size: 8vw;
  font-variation-settings: "wght" 100;
  margin-bottom: 8vw;
  margin-top: 10vw;
  text-align: center;
  color: white;
}

a {
  color: white;
}

h1 {
  font-size: 15vw;
  line-height: 17vw;
  font-variation-settings: "wght" 100;
  margin-bottom: 5vw;
  margin-top: 8vw;
  text-align: center;
}

.menu-grid {
  display: grid;
  font-size: 3vw;
  grid-template-columns: repeat(5, 15vw);
  gap: 15px;
  margin-top: 0.5vh;
  margin-left: 10vw;
  margin-right: 10vw;
  align-items: center;
  text-align: center;
  color: white;
}

#img-1 {
  position: absolute;
  display: none;
  width: 30vw;
  /* Adjust size as needed */
  pointer-events: none;
  /* Ensures the image doesn't block mouse events */
  z-index: 1000;
  /* Brings the image above other content */
}

.hover-target:hover+#img-1 {
  display: block;
}

#img-2 {
  position: absolute;
  display: none;
  width: 30vw;
  /* Adjust size as needed */
  pointer-events: none;
  /* Ensures the image doesn't block mouse events */
  z-index: 1000;
  /* Brings the image above other content */
}

.hover-target:hover+#img-2 {
  display: block;
}


h4 {
  font-variation-settings: "wght" 70;
  text-align: center;
  color: white;
}

h5 {
  font-size: 8vw;
  line-height: 9vw;
  margin-left: 10vw;
  margin-right: 10vw;
  margin-top: 5vh;
  margin-bottom: 5vh;
  font-variation-settings: "wght" 80;
  text-align: center;
}

.body-grid {
  display: grid;
  font-size: 2vw;
  margin-top: 2vh;
  margin-left: 17vw;
  margin-right: 15vw;
  align-items: left;
  color: white;
}

h3 {
  font-size: 2vw;
  font-variation-settings: "wght" 0;
}

h2 {
  font-size: 5vw;
  line-height: 5vw;
  font-variation-settings: "wght" 0;
  text-align: center;
}

h6 {
  font-size: 3vw;
  font-variation-settings: "wght" 0;
  text-align: center;
}

:root {
  --weight: 0;
  --font-size: 32px;
  --letter-spacing: 0px;
}

@font-face {
  font-family: "cutoutVF";
  src: url("common/cutoutVF.woff");
  /* Uncomment the following if you have the font files available */
  /* url("cutoutVF.ttf") format("truetype"),
     url("cutoutVF.woff") format("woff"),
     url("cutoutVF.woff2") format("woff2"); */
}

.cutout {
  font-family: "cutoutVF", "cutout", sans-serif;
  font-variation-settings: "wght" var(--weight);
  font-size: var(--font-size);
  letter-spacing: var(--letter-spacing);
  line-height: 10vh;
}

.scroll-bar {
  text-align: center;
  align-items: center;
  line-height: 1vh;
}

.cutout-random {
  font-family: "cutoutVF", "cutout", sans-serif;
  font-variation-settings: "wght" 0;
  transition: font-variation-settings .5s;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(3, 3fr);
  color: black;
  /* background-color: white; */
  font-family: "cutoutVF", "cutout", sans-serif;
  height: auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  margin-left: 2vw;
  margin-right: 2vw;
}

.random-letter {
  font-size: 20vw;
  /* Adjust as necessary */
  font-variation-settings: "wght" 0;
  /* Initial weight */
  transition: font-variation-settings 0.001s ease;
  /* Smooth transition for font variation */
  opacity: 1;
  /* Ensure full visibility */
  visibility: visible;
  /* Ensure it is not hidden */
}

#random-letter-container .grid-item {
  transition: opacity 0.5s ease;
  /* Smooth transition for visibility */
}

/* Ensure there's no hidden state initially */
#random-letter-container .grid-item {
  opacity: 1;
  visibility: visible;
}