
body {
  cursor: url('assets/cursortwo.png'), pointer;
  background: black;
  margin:0;
  padding:0;
  overflow:hidden;
}

/*Image*/

.image1{
  max-width: 75vw;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -10;
  transform: translate(-50%, -50%);
}

/*BG Transition*/

.square{
  margin: 0;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: black;
  z-index: 7;
  opacity: 0;
  -webkit-animation: fadeout 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeout 2s; /* Firefox < 16 */
        -ms-animation: fadeout 2s; /* Internet Explorer */
         -o-animation: fadeout 2s; /* Opera < 12.1 */
            animation: fadeout 2s;

}

@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/*Navigation*/

.nav{
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
   -webkit-text-fill-color: black;
   -webkit-text-stroke-width: 0.75px;
   -webkit-text-stroke-color: white;
    font-weight: normal;
    -webkit-text-size-adjust: 100%;
    line-height: 23px;
}

a:link    {
  text-decoration:none;
}

a:hover { 
  transform: skew(-20deg);

}

#bencain {
    cursor: pointer;
    position: fixed;
    z-index: 25;
    top: 21px;
    left: 25px;
}

#about {
    cursor: pointer;
    position: fixed;
    z-index: 25;
    top: 21px;
    right: 25px;
}

#archive {
    cursor: pointer;
    position: fixed;
    z-index: 25;
    bottom: 25px;
    right: 25px;
}

#title {
    cursor: pointer;
    position: fixed;
    z-index: 25;
    bottom: 25px;
    left: 25px;
}

/*Backgroud Links*/


 .bglinkright {
    cursor: url('assets/cursorone.png'), e-resize;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    text-indent: -9999px;
}

 .bglinkleft {
    cursor: url('assets/cursortwo.png'), w-resize;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    text-indent: 9999px;
}


@media screen and (max-width : 1030px) {

.nav{
font-size: 23px;
}


.image1{
max-width: 90vw;

}

/*Navigation*/


#title {
    max-width: 330px;
}

@media screen and (max-width : 500px) {

  .nav{
font-size: 20px;
}

.image1{
min-width: 140vw;

}

/*Navigation*/


#bencain {
    top: 7px;
    left: 10px;
}

#about {
    top: 7px;
    right: 10px;
}

#archive {
    bottom: 8px;
    right: 10px;
}

#title {
    bottom: 8px;
    left: 10px;
    max-width: 195px;
}




}

