@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}



li {
    /* list-style: none; */
    padding: 10px 0;

}

.top {
    list-style: none;
}

a {
    text-decoration: none;
    color: blue;
}

a:hover {
    color: orangered;
}

.wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 10px;

}

.header-container {
    display: flex;
    flex-direction: column;

    padding-bottom: 40px;
}

.article-date {
    font-size: 0.rem;
    color: rgb(50, 45, 45);
    /* padding-right:89%; */
    display: flex;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}


.conclusion {
    padding-bottom: 60px;
}

footer {
    background-color: black;
    color: whitesmoke;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 40px;


}

h5 {
    font-weight: 900;
}