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;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.images {
    display: flex;
    width: 100%;
    transition: 2s;
}

.images img {
    width: 100%;
}

.wrapper {
    height: 400px;
    width: 1000px;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    border-bottom: 15px solid lime;
}

#slide-1:target~.images {
    margin-left: 0px;
}

#slide-2:target~.images {
    margin-left: -100%;
}

#slide-3:target~.images {
    margin-left: -200%;
}

#slide-4:target~.images {
    margin-left: -300%;
}

.navigation a {
    display: inline-block;
    height: 25px;
    width: 25px;
    background-color: #dedede;
    font-size: 0px;
    border-radius: 50%;
    margin: 3px;
    transition: 1s;
}

.navigation a:hover {
    background-color: #666;
}

.navigation {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: -420px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar2 {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 20px;
    margin: 0 25px 0 25px;
}

.content {
    width: 960px;
    margin: auto;
    background-color: #fff;
}

.logo {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

.logo span {
    color: lime;
}

.menu {
    list-style: none;
}

.menu li {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.menu li:last-child {
    margin-right: 0;
}

.menu li a {
    font-size: 18px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
}

.menu li a:hover {
    color: lime;
    background-color: rgba(0, 0, 0, .7);
}

.main {
    width: 700px;
    padding-top: 15px;
    padding-left: 5px;
    box-sizing: border-box;
    float: left;
}

.main img {
    width: 300px;
    height: 200px;
    padding-right: 5px;
    object-fit: cover;
    margin-right: 25px;
    margin-bottom: 25px;
}

.main h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

.main p {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: justify;
    font: 16px/22px arial;
}

.sidebar {
    width: 250px;
    float: right;
    padding: 20px;
}

.sidebar h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

.sidebar img {
    width: 70px;
    height: 70px;
    float: left;
    padding-right: 10px;
}

.sidebar a {
    text-decoration: none;
}

.sidebar p {
    font: 12px/18px arial;
    margin-bottom: 15px;
}

.footer {
    height: 50px;
    background-color: #333;
    padding-top: 20px;
}

.footer .copy {
    color: #eaeaea;
    text-align: center;
    font-size: 12px;
    color: lime;
}


/*ini adalah clearfix*/

.cf:before,
.cf:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}
