*{
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: black;
    overflow: hidden;
    cursor: none; /* Hide the default cursor */
}

.flashlight {
  position: fixed;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 200, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  filter: blur(6px);
  mix-blend-mode: screen;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    filter: blur(4px);
    opacity: 0.7;
  }
  100% {
    filter: blur(6px);
    opacity: 1;
  }
}

.hidden-link {
  position: relative;
  color: white;
  text-decoration: none;
  opacity: 0; /* Hidden by default */
  transition: all 0.5s ease;
  width: fit-content;
  height: fit-content;
  padding: 3px;
  /*border: 1px solid white;*/
  border-radius: 10px;
}
.hidden-link:hover {
  color: black;
  background-color: white;
  opacity: 1;
  cursor: none;
}
.hidden-link[data-visible="true"] {
  opacity: 1; /* Makes link visible when flashlight is nearby */
  cursor: none;
}
.hidden-link_sachy {
  top: 20%;
  left: 35%;
}
.hidden-link_krkonose {
  top: 40%;
  left: 50%;
}
.hidden-link_kalendar {
  top: 55%;
  left: 75%;
}
.hidden-link_form {
  top: 90%;
  left: 25%;
}
.hidden-link_css {
  top: 35%;
  right: 20%;
}
.hidden-link_webdesign {
  top: 60%;
  left: 5%;
}
.hidden-link_morce {
  top: 15%;
  left: 45%;
}
.hidden-link_bezdomovec {
  top: 35%;
  left: 60%;
}
.hidden-link_rakije {
  top: 50%;
  left: 30%;
}
.hidden-link_final{
  top: 63%;
  left: 12%;
}
.hidden-link_fitness{
  top: 20%;
  left: 50%;
}



#main_header{
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

#reveal_button{
  width: fit-content;
  height: fit-content;
  color: white;
  font-weight: bold;
  float: right;
  margin-right: 10px;
  padding: 3px;
  border-radius: 10px;
  transition: all 0.5s ease;
  text-decoration: none;
}
#reveal_button:hover{
  color: black;
  background-color: white;
}
  
  
  
  
  
  
  
  
  