:root {
  --color1: #9a9e80;
  
  --color2: #cfb983;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  width: 100vw;
  height: 100vh;
  background-color: rebeccapurple;
  color: aliceblue;
  font-family: helvetica;
  
  background-image: url(./mrkbg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=12778), auto;
}

#wrapper {
  
  width: 100%;
  height: 100%;
  padding: 3rem;

}

nav {
  width: 100%;
  height: 2rem;

  
  display: flex;
  justify-content: space-around;
  }
  
nav p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
    

  padding: 0 2rem 0 2rem;
    
  background-color: var(--color2);
  color: #000;
  font-family: monospace;
  
  border-radius: 5px;
  
    
}


    
nav p:hover {
  background-color: var(--color1);
}
    
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
    }
    
main p {
  font-size: 5rem;
  font-family: courier;
}
    
footer {
 position: fixed;
 bottom:0;
}




