
/************************************
MASTER LAYOUT
************************************/
body  {
  margin: 5% auto;
  font-family: 'Open Sans', sans-serif;
  background-color: #121212;
  color: white;
}

main {
  max-width: 700px;
  margin: auto;
}

@media screen and (min-width: 1600px) {
  main {
    max-width: 1200px;
  }
}

img {
  width: 100%;
}
a:hover, button:hover {
  cursor: pointer;
}
button:hover {
  background-color: white;
  color: black;
  transition: 300ms;
  border: 2px solid white;
}
h1 {
  font-weight: 500;
  padding: 1% 0;
  font-size: 2rem;
}
button {
  color: white;
  background-color: black;
  border: 2px solid darkgray;
  text-transform: uppercase;
  font-size: 1.1rem;
  padding: 1.1rem 2.7rem;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  position: absolute;
  bottom: 30%;
}

p {
  line-height: 2;
  font-size: 1.3rem;
  color: white;
}
footer {
  bottom: 0%;
  left: 0;
  right: 0;
  height: 20%;
  background-color: black;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
footer p {
  color: gray;
  font-size: 14px;
}
footer a {
  color: gray;
  text-decoration: none;
  padding: 1% 0;
  border-bottom: 1px solid gray;
}
footer a:hover {
  color: lightgray;
  border-bottom: 1px solid lightgray;
  transition: 250ms;
}
/************************************
EXPERIMENT STYLES
************************************/ 

#all-text {
  -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 3s; /* Firefox < 16 */
        -ms-animation: fadein 3s; /* Internet Explorer */
         -o-animation: fadein 3s; /* Opera < 12.1 */
            animation: fadein 3s;
}

@keyframes fadein {
    from { 
      opacity: 0; 
    }
    to   { 
      opacity: 1; 
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { 
      opacity: 0; 
  }
    to   { 
      opacity: 1; 
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { 
      opacity: 0; 
  }
    to   { 
      opacity: 1; 
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { 
      opacity: 0; 
  }
    to   { 
      opacity: 1; 
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { 
      opacity: 0; 
  }
    to   { 
      opacity: 1; 
  }
}
