* {
    margin: 0;
    padding: 0;
}

html,body {
    height: 100%;
    min-height: 100vh;
}

.snailimg {
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
}

.nyc {
    position: absolute;
    width: 100%;
    height: 100%;
}


.insectmenu {
    position: fixed;
    left: 87%;
    top: 2%;
    font-size: 25px;
}

.dropdown_insect {
    position: fixed;
    left: 96%;
    top: 3%;
    font-size: 17px;
}

.stickbug {
    position: fixed;
    left: 92.9%;
    top: 12%;
}

.spider {
    position: fixed;
    left: 94.2%;
    top: 20%;
}

.moth {
    position: fixed;
    left: 94.9%;
    top: 28%;
}

.beetle {
    position: fixed;
    left: 94.3%;
    top: 36%;
}

.caterpillar {
    position: fixed;
    left: 92.5%;
    top: 44%;
}

.butterfly {
    position: fixed;
    left: 93.3%;
    top: 52%;
}

.grasshopper {
    position: fixed;
    left: 91.4%;
    top: 60%;
}

.worm {
    position: fixed;
    left: 94.4%;
    top: 68%;
}

.dragonfly {
    position: fixed;
    left: 92.8%;
    top: 76%;
}

.snail {
    position: fixed;
    left: 94.8%;
    top: 84%;
}

.info {
    position: fixed;
    left: 1%;
    top: 2%;
    font-size: 25px;
}



.button_top2 {
    display: block;
    box-sizing: border-box;
    border: 3px solid var(--button_outline_color);
    border-radius: var(--button_radius);
    padding: 0.5em 0.75em;
    background: var(--button_color);
    color: rgb(146, 253, 146);
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
   }

   button:hover .button_top2 {
    /* Pull the button upwards when hovered */
   transform: translateY(-0.33em);
  }
  
  button:active .button_top2 {
    /* Push the button downwards when pressed */
   transform: translateY(0);
  }

button {
   --button_radius: 5em;
   --button_color: black;
   --button_outline_color: rgb(146, 253, 146);
   font-size: 13px;
   font-weight: bold;
   border: none;
   border-radius: var(--button_radius);
   background: rgb(146, 253, 146);
  }
  
  .button_top {
   display: block;
   box-sizing: border-box;
   border: 3px solid var(--button_outline_color);
   border-radius: var(--button_radius);
   padding: 0.75em 1em;
   background: var(--button_color);
   color: rgb(146, 253, 146);
   transform: translateY(-0.2em);
   transition: transform 0.1s ease;
  }
  
  button:hover .button_top {
    /* Pull the button upwards when hovered */
   transform: translateY(-0.33em);
  }
  
  button:active .button_top {
    /* Push the button downwards when pressed */
   transform: translateY(0);
  }