* {
    font-family: "Inter", serif;
    color: #292828;
}

h1 {
    font-size: 60px;
    font-weight: 700;
    font-style: italic;
    text-align: left;
    /* typewriter effect by Geoff Graham on css-tricks.com */
    overflow: hidden;
    border-right: .15em solid blue;
    white-space: wrap;
    margin: 0 auto;
    animation: 
      typing 3.5s steps(30, end),
      blink-caret .5s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
  
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: blue }
}

h2 {
    font-size: 24px;
    text-align: center;
}
  
h3 {
    font-size: 18px;
    text-decoration: underline;
    text-align: center;
}

p {
    text-align: center;
    font-size: 18px;
}

a {
    font-size: 18px;
    text-align: center;
    padding: 5px;
}

.col-md-8 {
    margin: auto;
}

.col-md-3 {
    margin: auto;
}
