body {
    font-family: "Poppins";
    text-align: center;
    display:flex; flex-direction:column; justify-content:center;
    align-items: center;
}

p {
    color: rgb(117, 117, 117);
}

header {
    font-size: x-large;
    height: 2rem;
    margin: 2rem;
}

nav>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

nav>ul>li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 2rem;
}

nav>ul>li>a {
  text-decoration: none;
  color: gray;
  display: inline-flex;
}

nav>ul>li>a:hover {
    color: black;
}

main {
    display: flex;
    margin-top: 1rem;
    margin-left: 4rem;
    margin-right: 4rem;
    max-width: 1000px;
}

section {
    padding: 1rem;
    text-align: justify;
}

aside {
    padding: 1rem;
    padding-top: 2.5rem;
}

footer {
    color: darkslategray;
    width: 100%;
    height: 4rem;
}

/** Home **/
#homepage {
    display: flex;
    flex-direction: column;
}

#home {
    text-align: center;
}

#latest-blogs {
    text-align: center;
}