/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
  margin: 0;
}

html {
  cursor: url("cursor.png") 20 20, auto;
}
  
a, button {
  cursor: url("cursorpointer.png") 20 20, auto;
 }
  
  
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("1bg.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;

  max-width: 800px;
  margin: 0 auto;
  padding: 40px;

  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tray {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  
 padding-top: 80px;
}

.tray-img {
  width: 100%;
  height: auto;
  display: block;
}

.image-container {
  position: relative;
  width: 100%;
}


.hover-zone {
  position: absolute;

  top: 17%;
  left: 12%;
  transform: translate(-50%, -50%);

  width: 12%;
  height: 10%;

  background: transparent;
  opacity: 0;

  z-index: 10;
  display: block;
}

/* glow image */
.glow-img {
  position: absolute;

  top: 15.7%;
  left: 12%;
  transform: translate(-50%, -50%);

  width: 14.6%;

  opacity: 0;

  transition: opacity 0.1s ease;
  pointer-events: none;

  z-index: 6;
}

.hover-zone:hover ~ .glow-img {
  opacity: 1;
}

.overlay{
position: fixed;

top: 0;
left: 50%;

transform: translateX(-50%);

width: 1200px;
height: 200vh;

z-index: 11;

pointer-events: none;
}

/*top border*/
.overlay1{
position: fixed;

top: 0;
left: 50%;

transform: translateX(-50%);

width: 100%;
height: 100px;

z-index: 12;

pointer-events: none;
}


/*ikinci kapi*/
.hover-zone2 {
  position: absolute;

  top: 50%;
  left: 87%;
  transform: translate(-50%, -50%);

  width: 12%;
  height: 10%;

  background: transparent;
  opacity: 0;

  z-index: 10;
  display: block;
}

.glow-img2 {
  position: absolute;

  top: 50%;
  left: 88%;
  transform: translate(-50%, -50%);

  width: 26%;

  opacity: 0;

  transition: opacity 0.1s ease;
  pointer-events: none;

  z-index: 6;
}

.hover-zone2:hover ~ .glow-img2 {
  opacity: 1;
}

/*ucuncu kapi*/
.hover-zone3 {
  position: absolute;

  top: 88%;
  left: 92.5%;
  transform: translate(-50%, -50%);

  width: 12%;
  height: 10%;

  background: transparent;
  opacity: 0;

  z-index: 10;
  display: block;
}

.glow-img3 {
  position: absolute;

  top: 89.5%;
  left: 92.5%;
  transform: translate(-50%, -50%);

  width: 19.7%;

  opacity: 0;

  transition: opacity 0.1s ease;
  pointer-events: none;

  z-index: 6;
}

.hover-zone3:hover ~ .glow-img3 {
  opacity: 1;
}

/*dorduncu kapi*/
.hover-zone4 {
  position: absolute;

  top: 74%;
  left: 92.5%;
  transform: translate(-50%, -50%);

  width: 12%;
  height: 10%;

  background: transparent;
  opacity: 0;

  z-index: 10;
  display: block;
}

.glow-img4 {
  position: absolute;

  top: 73%;
  left: 92%;
  transform: translate(-50%, -50%);

  width: 18.3%;

  opacity: 0;

  transition: opacity 0.1s ease;
  pointer-events: none;

  z-index: 6;
}

.hover-zone4:hover ~ .glow-img4 {
  opacity: 1;
}



/*besinci kapi*/
.hover-zone5 {
  position: absolute;

  top: 27%;
  left: 89.8%;
  transform: translate(-50%, -50%);

  width: 12%;
  height: 10%;

  background: transparent;
  opacity: 0;

  z-index: 10;
  display: block;
}

.glow-img5 {
  position: absolute;

  top: 27%;
  left: 89.8%;
  transform: translate(-50%, -50%);

  width: 19%;

  opacity: 0;

  transition: opacity 0.1s ease;
  pointer-events: none;

  z-index: 6;
}

.hover-zone5:hover ~ .glow-img5 {
  opacity: 1;
}









#popup {
  position: fixed;

  width: 100px;
  height: auto;

  opacity: 0;

  pointer-events: none;

  z-index: 999;
}


#flyer {
  position: fixed;

  width: 80px;
  height: auto;

  left: 100px;
  top: 100px;

  z-index: 50;

  /*pointer-events: auto;*/
  cursor: grab;
  
    cursor: url("cursor.png") 16 16, auto;
  user-select: none;
  -webkit-user-drag: none;
}





.cheese {
  position: fixed;

  width: 20px;
  height: auto;

  pointer-events: none;

  z-index: 9999;

  transform: translate(-50%, -50%);
}

@keyframes fadeOut {

  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  
}
    
#flyer2 {
  position: fixed;

  width: 80px;
  height: auto;

  left: 100px;
  top: 100px;

  z-index: 51;

  /*pointer-events: auto;*/
  cursor: grab;
  
    cursor: url("cursor.png") 16 16, auto;
  user-select: none;
  -webkit-user-drag: none;

}



