/*Desktop CSS*/

/*Splash Page*/
.splash {
 margin: 0;
 cursor: url('/images/wolfCursor.png'), default;
 background: rgba(54,71,74,1);
}
.splash a {
  cursor: url('/images/wolfCursor.png'), pointer;
}
.cave {
  background-image: url('/backgrounds/caveBackground.jpg');
  background-repeat: no-repeat;
  background-position: 0 -32vw;
  background-size: cover;
  position:fixed;
  top:0;
  left:0;
  width: 100vw;
  height: 49.25vw;
  z-index: -1;
}
.gradient {
  position:absolute;
  top:0;
  left:0;
  height:100%;
  min-width:100%;
  background: radial-gradient(circle, rgba(0,0,0,0) 20%, rgba(54,71,74,1) 100%);
}
.splashTitle {
 position: absolute;
 left: 32%;
 top: 18%;
 width: 30vw;
 opacity: 0.5;
}
a.homeLink {
  width: 12%;
  height: 18%;
  display: block;
  position: absolute;
  left: 36%;
  top: 56%;
}
a.homeLink img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  bottom: 50%;
}
a.homeLink .hover {
  display: none;
}
a.homeLink .default {
  display: inherit;
}
a.homeLink:hover .hover {
  display: inherit;
}
a.homeLink:hover .default {
  display: none;
}
.leafLink {
  text-decoration: none;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(252, 212, 50, 0.25);
  font-size: 1vw;
}

/*Home Page*/
.home {
  margin: 0;
  padding: 0;
  cursor: url('/images/wolfCursor.png'), default;
  background-image: url('/backgrounds/pawSeamless.jpg');
  background-repeat: repeat;
  background-size: 480px 480px;
}
.homeWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.homeMain {
  width: 50%;
  height: 60%;
}

/*Mobile CSS*/
@media only screen and (orientation: portrait) {
  /*Splash Page*/
  .cave {
    height: 100%;
    width: 100%;
    background-position: 50% 50%;
  }
  .splashTitle {
    display: none;
  }
  a.homeLink {
    width: 16vw;
    height: 12vw;
    min-width: 100px;
    min-height: 100px;
    left: 34%;
    top: 60%;
  }
  
  /*Home Page*/
  
}