body {
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(128, 127, 127);
}

header {
    display: inline; 
}

h2, h3 {
color: #000000;
}

p {
    font-size: 25px;
}

.jumbotron {
    font-size: 20px;
    padding: 60px;
    background-color: #0e0b0b;
    text-align: center;
    color: rgb(117, 115, 115);
}

.jumbotron h1:hover {
    font-weight: bold;
    font-size: 50px;
}

nav {
    background-color: #707070;
    padding: 5px;
    position: sticky;
    top: 0;
}

nav ul {
    padding-inline: 4rem;
    display: flex;
    gap: 2rem;
}

nav li {
    display: flex;
    list-style-type: none;
    margin-right: 20px;
}

nav a {
    font-size: 18px;
    font-weight: 400;
    text-align: none;
    color: rgb(14, 13, 13);
}

nav a:hover {
    font-weight: bold;
    font-size: 30px;
}

main {
    padding: 25px;
    display: flex;
    gap: 1.5rem;
}

#content {
    flex: 5;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem 2rem;
    background-color: hsl(0, 1%, 51%);
}

aside {
    flex: 1;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0.2);
    border-radius: 5px;
    padding: 20px;
    background-color: dimgray(41, 50%, 79%);
}

.card p {
    text-align: justify;
    font-size: 20px;
}

footer {
    padding: 1px;
    background-color: rgb(180, 24, 24);
    font-size: 25px;
    text-align: center;
}

.profile header {
    text-align: 100%;
}

.featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}

.featured-image-header {
    width: 100px;
    max-width: 400px;
    object-fit: cover;
    object-fit: center;
    border-radius: 5px;
    padding: 20px;
    display: flex;
}

.profile img {
    width: 200px;
}

.table, th, td{
    padding: auto;
    background-color: aliceblue;
    border: 1px solid;
}