*{
    margin: 0;
    box-sizing: border-box;
}

.front{
    margin-top: 50px;
}

table, th, td {
    text-align: left;
    color: white;
}

.information{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

body{
    font-family: 'Space Grotesk';
    margin: 0;
    padding: 0;
    background-color: black;
}

h1{
    font-size: 60px;
    text-align: center;
}

h2, h3{
    color: white;
    padding: 20px 0 20px 20px;
}

p{
    padding: 20px 20px 20px 20px;
    color: white;
}

.line{
    width: 100%;
    height: 5px;
    background-color: #01f5d1;
}

.jumbotron{
    font-size: 20px;
    padding: 60px;
    background-color: black;
    color: white;
}

nav{
    background-color: black;
    padding: 20px 0 0 0;
    position: sticky;
    top: 0;
    text-align: center;
}

nav ul{
    margin-bottom: 20px;
}

nav li{
    display: inline;
    list-style-type: none;
    margin-right: 30px;
}

nav a{
    color: white;
    text-decoration: none;
}

a{
    color: white;
}

a:hover{
    color: #01f5d1;
}

nav a:hover{
    font-weight: bolder;
    color: #01f5d1;
}

main{
    overflow: auto;
}

header{
    display: inline;
}

.card {
    background-color: black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

footer{
    padding: 20px;
    color: white;
    background-color: #242424;

    text-align: center;
    font-weight: bold;
}

.featured-image {
    width: 100%;
    max-height: 500px;

    object-fit: cover;
    object-position: center;
}

.covid-image {
    width: 100%;
    max-height: 700px;

    object-fit: cover;
    object-position: center;
}

.profile header{
    text-align: center;
}

#content{
    float: left;
    width: 100%;
}

aside{
    float: right;
    width: 25%;
    /* padding-left: 20px; */
}

@media screen and (max-width: 1000px) {
    #content, aside{
        width: 100%;
        padding: 0;
    }
}

