/* kalau mau cari code warna ada di w3schools
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*//*teknik reset oleh ericmeyer*/

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;
}

/*==============================================================================================================================*/
/*style*/
body {
    font: 16px/28px arial, sans-serif;
    background-color: #eaeaea;
    background-image: url(img/webb-dark.png);
    color: #333;
    
}

.container {
    width: 800px;
    margin: auto;
    background-color: white;
    border-left: 5px solid grey;
    border-right: 5px solid grey;
    border-top: 5px solid grey;
    border-bottom: 5px solid grey;
}

.header {
    padding: 20px;
    padding-bottom: 10px;
}

.header .judul {
    font-size: 40px;
    font-weight: bold;
}

.header ul li{
    display: inline-block;
    margin-top: 20px;
    margin-right: 10px;
}

.header a {
    text-decoration: none;
    color: salmon;
    padding: 3px;
}

.header a:hover {
    background-color: lightskyblue;
    color: white;
}

.hero {
    height: 280px;
    background-image: url(img/komponen-komputer.png);
    background-size: cover;
    background-position: 0 -90px;
    border-top: 5px solid brown;
    border-bottom: 5px solid brown;
}
/*tips menggunakan gambar tanpa copyright untuk website, di https://unsplash.com*/
/* web halaman untuk membuat backgorund halaman berupa pola yaitu:subtlepatterns*/

.content {
    padding: 20px;
}

.content h2 {
    font-size: 25px;
    font-weight: bold;
}

.content h3 {
    font-size: 15px;
    font-weight: bold;
}

.content .penulis {
    font-size: 11px;
    margin-top: -5px;
}

.content .penulis a {
    color: salmon;
    text-decoration: none;
}

.content p {
    margin-bottom: 8px;
    font-size: 14px;
    text-align: justify;
}
.content  .bold p {
    font-weight: bold;
}

.content img {
    width: 400px; /* Untuk memastikan gambar mengisi div sepenuhnya */
    height: auto; /* Agar perbandingan aspek gambar tetap terjaga */
    display: block; /* Menghilangkan margin tambahan yang mungkin ada pada elemen img */
  }

.content .btn {
            margin-bottom: 20px;
            margin-right: 10px;
            border-radius: 25px;
			width: 10px;
			padding: 8px 25px;
			color: white;
			background-color: blue;
			text-decoration: none;
}


.footer {
    background-color: #333;
    padding: 10px;
}

.footer .copy {
    color: #eaeaea;
    text-align: center;
    font-size: 12px;
}