body {
    margin: 0;
    padding: 0;
    backface-visibility: hidden;
}
#scene {
    padding: 0;
    margin: 0;
    width: 115%;
    height: 120vh;
    overflow: hidden;
    top: -5%;
    left: -5%;
    /*transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);*/
}

.container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.layer {
    width: 100%;
    height: 120vh;
    overflow: hidden;
}
.background {
    background-image: url(superspace.jpg);
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: -5%;
    top: -5%;
}

.content {
    position: absolute;
    left: 15%;
    top: 30%;
    right: 15%;
    text-align: center;
    z-index: 201;
    font-size: 1em;
    color: White;
    font-family: Helvetica;
   }
  
  .resume { 
    position: relative;
    width: 100%;
    height: 100vh;
    font-size: .75em;
}

.resume h1 {
    font-family: Helvetica;
    color: black;
    text-align: left;
    padding-bottom: 10px;
    line-height: 125%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 0px;
    position: relative;
}

#twitter {
    margin: 15px;
    margin-left: 0px;
}

#email {
    margin: 15px;
}

#heart {
    margin: 15px;
    margin-right: 0px;
}

a {
  text-decoration: none;
}

#snapchat {
     display: block;
   margin: auto;
   margin-top: 100px;
  }

@media (max-width: 435px) {
  .resume h1 {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 15px;
    font-size: 1.7em;
   }

   #snapchat {
    margin-top: 25px;
   }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .resume h1 {
    margin-left: 15%;
    margin-right: 15%;
   }
}

@media (min-width: 1025px) {
  .resume h1 {
    margin-left: 25%;
    margin-right: 25%;
   }
}

@media (min-width: 500px){
   .resume h1{
    top: 50px;
  }
}






/* animations for name */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

h1 {
  animation-name: fadeIn;
  animation-duration: 10s;
}

/* animations for links */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

#twitter{
  animation-name: fadeInUp;
  animation-duration: 7.5s;
  animation-delay: 0s;
  }

#email{
  animation-name: fadeInUp;
  animation-duration: 7.5s;
  animation-delay: .35s;    
}
#heart{
  animation-name: fadeInUp;
  animation-duration: 7.5s;
  animation-delay: .65s;
}










