html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* style */
body {
    font: 16px/28px arial, sans-serif;
    background-color: aquamarine;
    background-image: url(Leaves.png);
    color: rgb(0, 92, 61);
}

.container {
    width: 960px;
    margin: auto;
    background-color: white;
}

.header {
    padding: 20px;
}

.header .judul {
    font-size: 40px;
    font-weight: bold;
}

.header ul li {
    display: inline-block;
    margin-top: 20px;
    margin-right: 10px;
    font-size: small;
}

.header a {
    text-decoration: none;
    color: orangered;
    padding: 5px;
}

.header a:hover {
    background-color: rgb(9, 153, 105);
    color: white;
    border-radius: 5px;
}

.hero {
    height: 350px;
    background-image: url(20200204_111034.jpg);
    background-size: cover;
    background-position: 0 0px;
    border-top: 5px solid rgb(9, 153, 105);
    border-bottom: 5px solid orangered;
}

.main {
    width: 600px;
    padding: 20px;
    box-sizing: border-box;
    float: left;
}

.main h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
}

.main .penulis {
    font-size: 12px;
    margin-top: 2px;
}

.main .penulis a {
    text-decoration: none;
    color: rgb(9, 153, 105);
}

.main p {
    text-align: justify;
    margin-bottom: 20px;
    font-size: 15px;
}

.sidebar {
    width: 300px;
    float: right;
    padding: 20px;
}

.sidebar h3 {
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
}

.sidebar img {
    width: 70px;
    height: 70px;
    float: left;
    padding-right: 10px;
}

.sidebar p {
    text-align: justify;
    font: 12px/18px arial;
    color: black;
}

.sidebar .kategori {
    margin-top: 50px;
}

.sidebar ul li a {
    text-decoration: none;
    color: inherit;
    font-size: small;
}

.sidebar h4 a {
    text-decoration: none;
    background-color: rgb(9, 153, 105);
    color: white;
    padding: 5px;
    border-radius: 8px;
    margin: inherit;
}

.sidebar .previous {
    margin-top: 120px;
    margin-bottom: 10px;
    font-size: 20px;
}

.sidebar .next {
    margin-top: 50px;
    margin-bottom: 10px;
    text-align: right;
    font-size: 20px;
}

.sidebar .next2 {
    text-align: right;
}

.footer {
    background-color: rgb(0, 70, 46);
    text-align: center;
    color: white;
    font-size: 11px;
    padding: 7px;
    font-style: italic;
}

/* micro clear fix */

.cf:before,
.cf:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.cf:after {
    clear: both;
}