/* Author : FAIP MARDONI */

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    background-image: url(/assets/img/background.jpg);
    font-family: 'Ubuntu Mono', monospace;
}

header {
    min-height: 100px;
    display: block;
    position: relative;
    width: 100%;
    padding-top: 10px;
}

.logo {
    width: 100%;
    position: fixed;
    display: block;
    z-index: 99999;
}

.header-content {   
    min-height: 100px;
    top:0;
    padding: 10px;
    width: 80%;
    margin: auto;
    text-align: center;
    display: block;
    position: relative;
    background-color: darkblue;
    opacity: 0.8;
    border: 1px solid whitesmoke;
    box-sizing: border-box;
}

.header-content hr {
    width:250px;
    margin:auto;
}

.header-content h1 {
    min-height: 50px;
    line-height: 50px;
    font-size: 36px;
    font-weight: bolder;
}
.header-content span {
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.header-content h1 {
    color: white;
}

h1, h2, h3 {
    text-transform: uppercase;
}

h1, h2 {
    color: darkblue;
}

a {
    text-decoration: unset;
    color: unset;
}

nav {
    width: 80%;
    margin: 115px auto 15px;
    height: 60px;
    background-color: darkblue;
    position: relative;
    display: block;
    opacity: 0.8;
    color: whitesmoke;
    border: 1px solid whitesmoke;
    box-sizing: border-box;
}

#main-nav {
    position: relative;
    display: block;
}

#main-nav ul {
    margin-left: 50px;
}

#main-nav ul li {
    float: left;
    margin-right: 25px;
    display: block;
    line-height: 60px;
    font-weight: 300;
    font-size: 18px;
}

main {
    min-height: 900px;
    background-color: whitesmoke;
    width: 80%;
    margin: auto;
    padding: 30px 5px 20px;
    opacity: 0.8;
    border: 1px solid blue;
    box-sizing: border-box;
}

.main-content {
    padding: 30px;
    width: 70%;
    text-align: justify;
    float: left;
    box-sizing: border-box;
}

.sidebar {
    float: right;
    width: 28%;
    margin-left:2%;
    box-sizing: border-box;
    padding: 30px;
}

article {
    display: block;
    margin-left: 15px;
    margin-bottom: 60px;
}

article h2 {
    margin-bottom: 35px;
}

.line-title {
    border-bottom: 1px groove black;
    font-size: 20px;
    height: 10px;
}
.line-title span {
    background: whitesmoke;
    padding-right: 10px;
    font-size: 28px;
    margin-bottom: 15px;
}

em {
    float: right;
    font-weight: 400;
}

p, li{
    font-size: 18px;
    line-height: 24px;
}

ol {
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

ol li {
    margin-left: 20px;
    line-height: 24px;
}

.education li {
    font-weight: bold;
}

ol p {
    margin-bottom: 5px;
    margin-left: 20px
}

div {
    display: block;
}

.widget-1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.widget-1 img {
    margin-left:30px;
}

#photo-1 {
    width: 200px;
    border-radius: 100px;
    border: 2px solid blue;
}

.contact {
    text-align: center;
    border-bottom: 3px dotted black;
    box-sizing: border-box;
}

.contact h2 {
    margin-bottom: 30px;
}

div h3 {
    margin-bottom: 10px;
}

.vl {
    border-left: 1px solid black;
    height:700px;
    position: absolute;
    left: 66.8%;
    margin-left: -3px;
    top: 270px;
}

.sosmed {
    margin-top: 20px;
    margin-left: 15px;
}

.sosmed img {
    width: 70px;
    float: left;
    margin-right: 5px;
    border: 1px solid darkblue;
    border-radius: 100px;
}

form {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 22px;
}

label {
    font-weight: 400;
    cursor: pointer;
    
}

input, textarea {
    border: 1px solid #c6c9cc;
    border-radius: 5px;
    color: black;
    margin: 15 auto 10px;
    padding: 5px 8px;
}

input,
select,
textarea {
  font: 300 16px/22px "Lato", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.copyright {
    background-color: darkblue;
    width: 80%;
    margin: 20px auto 5px;
    height: 50px;
    text-align: center;
    line-height: 30px;
    padding: 5px;
    opacity: 0.8;
    border: 1px solid white;
    box-sizing: border-box;
    color: white;
}