body {
  
  height:100vh;
  box-sizing:border-box;
  overflow-y:hidden;
  
  font-family: 'Apple Chancery';
    font-weight: 100;
    color: white;
    
    cursor: url("images/cursor.png"), auto;

}

a:link {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: green;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

.menu
    {
      position:absolute;
      left:1.5vw;
      bottom:1vh;
      
      font-size: 3.5em;
      line-height: 1.2;
      color:pink;
      text-shadow:1px 1px 5px #FFC0CB80, 1px 1px 5px #FFC0CB80;

      text-align:left;
      text-decoration: none;
      
      z-index:9999;}
      
      
      
      @media screen and (max-width: 769px) {
        .menu{
        font-size: 2em;
        bottom:1vh;
        left: 2vh;
        position:absolute;}
      }
     
    
.footer 
      { font-size: 1em;
        position: absolute;
        bottom:0vh;
       text-align: right;  
       right: 10px;
       width: 100%;
      color:white}
      
  @media screen and (max-width: 769px) {
    .footer{
      bottom:0vh;
      position:absolute;}
      }
     
    