#navigation a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 0.95rem;
}

#navigation a:hover,
#navigation a:active{
     color: darkorange;
}

#navigation h1 {
    text-align: center;
    color: whitesmoke;
}

#articles h3{
    text-align: center;
    color: whitesmoke;
}

#articles article {
    text-align: center;
    max-width: 25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.26);
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    border-radius: 64px;
    display: flex;
    flex-direction: column;
    background-color: darkgreen;
    color: whitesmoke;
    font-size: 1rem;
    font-weight: bold;
}

#articles img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30rem;
    /* height: 25rem; */
}

