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

body {
    font-family: sans-serif;
    background-color: #f4f4f4;
}

img {
    width: 100%;
}

.title {
    width: 100%;
    font-weight: bold;
    height: 45px;
    display: flex;
    align-items: center;
}

.title h3 {
    margin: 0 5px;
}

.title span {
    display: inline-block;
    width: 50px;
    height: 4px;
    background-color: #017b63;
    border-radius: 10px;
}

/* Header */
header {
    display: flex;
    padding: 10px;
    align-items: center;
}

header .logo {
    width: 15%;
    margin-right: 20px;
}

header .name a {
    color: #000;
    text-decoration: none;
}

/* Header End */

/* Navigasi */
nav {
    background-color: #017b63;
    width: 100%;
    padding: 20px;
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 20px 25px;
    font-weight: bold;
}

nav ul .active {
    background-color: #06a182;
}

nav ul li a:hover {
    background-color: #06a182;
}

/* Navigasi End */

/* Main  */
/* Left Content  */
main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

main .leftContent {
    padding: 20px;
    width: 60%;
    letter-spacing: 1px;
    background-color: #fff;
}

main .leftContent img {
    margin: 10px 0;
}

main .leftContent p {
    line-height: 25px;
}

main .leftContent button {
    padding: 20px;
    font-size: 2em;
    outline: none;
    border-radius: 20px;
    background-color: #017b63;
    color: #fff;
    border: none;
    cursor: pointer;
    margin: 30px 0;
    box-shadow: 3px 3px 2px grey;
}

main .leftContent button:hover {
    background-color: #06a182;
}

/* Sidebar  */
main .sidebar {
    background-color: #fff;
    padding: 20px;
    height: 400px;
    width: 35%;
}

main .sidebar .info h2 {
    font-style: italic;
    text-decoration: underline;
    margin-bottom: 20px;
}

main .sidebar .info p {
    font-size: 1.1em;
    line-height: 25px;

}

main .sidebar .info a {
    color: #000;
    text-decoration: none;
    line-height: 30px;
}

main .sidebar .info i {
    color: #017b63;
}

/* Main End */



















/* Footer  */
footer {
    width: 100%;
    background-color: rgb(109, 108, 108);
    padding: 20px;
    height: 100px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    margin-top: 50px;
    position: relative;
}

footer .up {
    background-color: #06a182;
    color: #fff;
    padding: 10px;
    position: absolute;
    right: 5px;
    top: 0;
}

/* Footer End */