@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500&family=Roboto:wght@100;300;400&display=swap');
html {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.8;
}
body {
    background-color: #3a3a30;
    margin-top: 20px; /* Offset body content by navbar height. */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    counter-reset: captions;
}
a {
    color: inherit;
    text-decoration: inherit;
}
p {
    font-family: inherit;
    font-size: 1rem;
    font-weight:300;
    line-height: inherit;
    color: #fff;
}
.centered {
    font-family: inherit;
    font-weight:300;
    color: #aaa;
    width:100%;
    text-align:center;
}
.space {
    width:1em;
    display: inline-block;
}
ul {
    font-weight:300;
    font-family: 'Roboto';
    font-size: 20px;
    color: rgba(150,150,150,0.8);
    list-style-type: none;
    padding-left: 0;
}
li {
    padding-left:10px;
}
h1 {
    font-family: 'Roboto Slab';
    color: rgba(230,230,230,0.8);
    font-size: 50px;
    font-weight: 400;
}
h2 {
    font-family: 'Roboto Slab';
    color: rgba(200,200,200,0.8);
    font-size: 26px;
    font-weight: 400;
}
.breathe {
    animation: 1s infinite alternate breathered;
}
@keyframes breathe {
    from {
        color:rgba(230,230,230,0.0);
    }
    to {
        color: rgba(230,230,230,0.8);
    }
}
@keyframes breathered {
    from {
        color: rgba(230,230,230,0.0);
    }
    to {
        color: rgba(202,17,17,0.8);
    }
}
@media screen and (max-width: 1200px) { /* Match max-width of .nav-bar query. */
    body {
        font-size:20px;
        margin-top: 20px; /* Offset body content by navbar height. */
    }
}
