html, body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color:#202A44;
  height:max-content;
  align-self: flex-start;
  padding-top:50px;
}

main {
  border: outset 2px lightgray;
  padding: 60px 100px;
  box-shadow: 0 10px 10px -10px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  opacity: 0;
  transform: translateY(-15px);
  -webkit-animation: view 1s ease both;
          animation: view 1s ease both;
}

h1 {
  font-size: 30px;
  color: darkorange;
  text-align: center;
}
h1 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-15px);
  -webkit-animation: view 1s 0.15s ease both;
          animation: view 1s 0.15s ease both;
}
h1 small {
  font-size: 70%;
  font-weight: 100;
  color: #2f2f2f;
}

hr {
  width: 50px;
  margin: 20px auto;
}

h6 {
  margin-top: 0;
  text-align: center;
  font-weight: 100;
  color: #bdbdbd;
  font-size: 20px;
}
h6 span {
  font-size: 1.2em;
  color: darkorange;
  font-weight: bold;
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  -webkit-animation: view 1s 0.15s ease both;
          animation: view 1s 0.15s ease both;
}

@-webkit-keyframes view {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes view {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.tip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: #d2d2d2;
  font-size: 12px;
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}

.article {
  padding:3% 20%;
  color:white;
}

a {
  color:yellow;
}

