:root {

  --color-green: #80c2b5;
  --color-white: #ffffff;
  --color-yellow: #e8de90;

  --font-family-en: "futura-pt", sans-serif;

  --title-font-size: 2.3rem;
  --subtitle-font-size: 1.75rem;
  --accent-font-size: 1.25rem;
  --desc-font-size: 1rem;

}

html{
  margin: 0;
  padding: 0;
  font-size: 87.5%;
  /* cursor: none !important; */
}
*{
  /* cursor: none !important; */
}
body{
  margin: 0;
  padding: 0;
  /* cursor: none !important; */
   font-family: sans-serif;
}
h1,h2,h3,h4,h5,h6,p,a,li{
  font-family: var(--font-family-main);
  margin: 0;
}
h1,h2,h3,h4,h5,h6{
  font-size: 1rem;
  font-weight: normal;
}

a{
  text-decoration: none;
  cursor: none;
}
ul{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}






.cursor-info {
  position: fixed;
  color: var(--color-green);
  font-size: 14px;
  pointer-events: none;
  white-space: nowrap;
  font-family: sans-serif;
  z-index: 10000;
  top: 0;
  left: 0;
}
#custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  margin: -10px 0 0 -10px;
}
#custom-cursor::before,
#custom-cursor::after {
  content: "";
  position: absolute;
  background: var(--color-green);
}
#custom-cursor::before {
  width: 2px;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#custom-cursor::after {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}





#modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#modal img {
  max-width: 98%;
  max-height: 100%;
  height: 100%;
  object-fit: contain;
}

#close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: lighter;
}