body{
    background-color: rgb(208, 208, 208);
}

.title{
    position: relative;
}
#title{
    width: 1000px;
    height: 350px;
    position: absolute;
    left: 220px;
}

nav {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
  }
  
  .hover-this {
    transition: all 0.3s ease;
  }
  
  span {
    display: inline-block;
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 36px;
    text-transform: uppercase;
    transition: transform 0.1s linear;
  }
  
  .cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: white;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.3s ease;
  }
  
  .hover-this:hover ~ .cursor {
    transform:translate(-50%, -50%) scale(8);
  }
  
  @media(min-width: 900px) {
    nav {
      display: flex;
      justify-content: space-around;
    }
  }
  
  @media(max-width: 900px) {
    nav {
      top: 30%;
    }
    
    .hover-this {
      width: 100%;
      padding: 20px 0;
      display: inline-block;
    }
  }

.catthing{
    position: relative;
}
#catthing{
    width: 300px;
    height: 400px;
    position: absolute;
    top: 550px;
    left: 100px;
}

.crabman{
    position: relative;
}
#crabman{
    width: 900px;
    height: 1100px;
    position: absolute;
    top: 550px;
    left: 500px;
}

.hands{
    position: relative;
}
#hands{
    width: 400px;
    height: 600px;
    position: absolute;
    top: 1000px;
    left: 100px;
}

.fireman{
    position: relative;
}
#fireman{
    width: 600px;
    height: 500px;
    position: absolute;
    top: 1600px;
    left: 0px;
}

.slaying{
    position: relative;
}
#slaying{
    width: 800px;
    height: 900px;
    position: absolute;
    top: 1700px;
    left: 600px;
}

.horribleintimacy{
    position: relative;
}
#horrible{
    width: 500px;
    height: 500px;
    position: absolute;
    top: 2150px;
    left: 40px;
}

/*COLLECTION*/

.container{
    position: relative;
}
#fishbutton{
    padding: 0;
    border: none;
    background: none;
    background-image: url('clickfish_.gif');
    background-size: 500px;
    width: 500px;
    height: 350px;
    display: flex;
    margin: 40px;
    cursor: pointer;
    top: 500px;
    position: absolute;
}

.popup{
    width: 400px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    position: 0;
    top: 50%;;
    left: 50%;
    transform: translate(50%, 50%) scale(0.1); 
    text-align: center;
    padding: 0 5px 30px;
    visibility: hidden;
    transition: transform 2s, top 2s;
}

.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.popup h2{
    font-size: 30px;
    color: rgb(168, 2, 2);
}
.popup p{
    font-size: 20px;
}

.popup img{
    width: 50%;
    margin-top: -20px;
    border: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.open-popup{
    visibility: visible;
    top: 500%;
    transform: translate(125%, 250%) scale(1); /*controls where popup appears*/
}

.popup button{
    width: 30%;
    margin-top: 10px;
    padding: 10px 0;
    background: rgb(169, 34, 34);
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgb(112, 2, 2);
}

#overlay {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    z-index: -1;
}
  
#overlay.active {
    opacity: 1;
    pointer-events: all;
}

.container2{
    position: relative;
}
#butterflybutton{
    padding: 0;
    border: none;
    background: none;
    background-image: url('clickbutterfly.gif');
    background-size: 600px;
    width: 600px;
    height: 600px;
    display: flex;
    margin: 40px;
    cursor: pointer;
    position: absolute;
    left: 700px;
    top: 500px;
}

.popup2{
    width: 400px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    position: 0;
    top: 50%;;
    left: 50%;
    transform: translate(50%, 50%) scale(0.1); 
    text-align: center;
    padding: 0 5px 30px;
    visibility: hidden;
    transition: transform 2s, top 2s;
}

.open-popup2{
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.popup2 h2{
    font-size: 30px;
    color: rgb(168, 2, 2);
}
.popup2 p{
    font-size: 20px;
}

.popup2 img{
    width: 50%;
    margin-top: -20px;
    border: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.open-popup2{
    visibility: visible;
    top: 500%;
    transform: translate(125%, 50%) scale(1); /*controls where popup appears*/
}

.popup2 button{
    width: 30%;
    margin-top: 10px;
    padding: 10px 0;
    background: rgb(169, 34, 34);
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgb(112, 2, 2);
}

#overlay2 {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    z-index: -1;
}
  
#overlay2.active {
    opacity: 1;
    pointer-events: all;
}


/*CONTACT*/

.insta{
    position: relative;
    top: 500px;
}
#contact{
    position: absolute;
    text-align: left;
    color:rgb(168, 2, 2);
}

.email{
    position: relative;
    top: 550px;
}

.location{
    position: relative;
    top: 620px;
}

.devil{
    position: relative;
}
#devil{
    width: 600px;
    height: 800px;
    position: absolute;
    top: 400px;
    left: 500px;
}


/*ABOUT*/

.zine{
    position: relative;
    top: 550px;
}
#whatszine{
    position: absolute;
    color: rgb(169, 34, 34);
    top: -60px;
}
#zinedef{
    position: absolute;
}

.artzine{
    position: relative;
    top: 700px;
}
#whatarewe{
    position: absolute;
    color:rgb(169, 34, 34);
    top: -60px;
}
#warmarteriesis{
    position: absolute;
}

.us{
    position: relative;
    top: 890px;
}
#whoarewe{
    position: absolute;
    color:rgb(169, 34, 34);
    top: -60px;
}
#weare{
    position: absolute;
}