article {
    background-color: #eeeeee;
    font-size: 1.3em;
    color: blue;
}

header nav a {
    background: #0f5711;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border: 1px solid lightgray;
    /* Flexbox */
    flex-grow: 1;
}

header nav a:hover {
    background: #198412;
}

aside {
    background: #0f5711;
    padding: 5px;
    /*FLEX*/
    flex: 1 1 30%;
    /*flex:0 0 300px;*/

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
}

aside .widget {
    background: #198412;

    margin: 5px;
    border: 2px solid black;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

aside .widget h3 {
    text-indent: 10px;
    width: 100%;
}

aside .widget a {
    width: 100%;
    background: #198412;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 2px;
    border: 1px solid lightgray;
    /* Flexbox */
    flex-grow: 1;
}

aside .widget a:hover {
    background: #49ba40;
}

article h2 {

}

article h3 {
    margin-top: 5px;
    text-indent: 30px;
}

article p {
    margin-top: 15px;
}
img {
    width: 100%;
    padding: 10px;
}
ol, ul {
    margin-left: 80px;
}
table {
    border-collapse: collapse;
    width: 80%;
    margin-left: 10%;

}
td {
    border: 1px solid darkgray;
    padding: 2px;
}