body{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}

h1{
  font-family: Helvetica Neue, Helvetica, Sans-Serif;

  color: white;
  font-weight: 400;
}

h2{
  font-family: Helvetica Neue, Helvetica, Sans-Serif;
  color: white;
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
#top{
  position: fixed;
  top: 49vh;
  left: 20px;
  font-size: 4vw;
}

#link{
  position: fixed;
  top: 49vh;
  right: 20px;
  font-size: 4vw;
}
}

@media only screen and (min-width: 600px) {
#top{
  position: fixed;
  top: 49vh;
  left: 40px;
  font-size: 4vw;
}


#link{
  position: fixed;
  top: 49vh;
  right: 40px;
  font-size: 4vw;
}
}

a{
  color: #999999;
  transition: 0.2s;
  text-decoration: none;
}

a:visited{
  color: #999999;
}

a:hover{
  padding-right: 20px;
   color: #ffffff;
}


