body {
  padding-top: 50px;
  background-color: lightblue;
  color: darkred;
  font-family: Georgia;
  justify-content: left;
  font-size: 24px;
}

h1 {
  white-space: nowrap;
  font-size: 300px;
  overflow: hidden;
  animation: typewriter 3.5s steps(16) forwards,
      blink 800ms steps(16) infinite normal;
      
  border-right: 5px solid black;
}

@keyframes typewriter {
    from {
   width: 0%; }
  to {
   width: 100%; }
}

@keyframes blink {
     from { border-color: black; }
     to { border-color: transparent; } 
}
 
h2 { 
  font-size: 80px;
  line-height: 90px;
}

.button1 {
  border: 2px solid #04AA6D;
  background-color: yellow;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
}

a {
  color: hotpink;
  background-color: yellow;
  font-weight: bold;
}
  
button1:hover {
  background-color: #555555;
  color: white;
}

@media only screen and (max-width: 600px) {
  body {
    background-color: white;
  }
}
