* {
    box-sizing: border-box;
}

body {
    font-family: Arial;
    padding: 10px;
    background: #000000;
}

/* Header/Blog Title */
.header {
    padding: 30px;
    text-align: center;
    background: white;
}

.header h1 {
    font-size: 50px;

}

.nav {
    float: right;
    padding: 1px;
    text-align: right;
    background: white;
    margin-bottom: 20px;
}

.nav a {
    float: right;
    margin-right: 10px;
    margin-bottom: 20px;
}


/* Style the top navigation bar */
.topnav {
    max-width: 700px;
    margin: 0 auto;
    /* Agar center, sama seperti blockquote */
    border-bottom: 1px solid #000;
    /* Hilangkan border lain jika tidak diperlukan: border: none; */
    /* Bisa tambahkan margin-top / margin-bottom jika ingin jarak */
}


/* Style the topnav links */
.topnav a {
    text-decoration: none;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin: 10px;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #5f5cfa;
    color: rgb(255, 255, 255);
}

.isiheader {
    padding: 1px;
    text-align: center;
    background: white;
    margin-top: 15px;
    margin-bottom: 15px;
}

.isiheader blockquote {
    max-width: 700px;
    /* Batas lebar konten, misalnya 600px */
    margin: 5px auto;
    /* Tengah secara horizontal & jarak dari atas/bawah */
    text-align: left;
    /* Rata tengah teks */
    padding: 5px;
    /* Spasi dalam */
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
    float: left;
    width: 75%;
}

/* Right column */
.rightcolumn {
    float: center;
    width: 25%;
    background-color: #f1f1f1;
    padding-left: 20px;
}

/* Fake image */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

.round-image {
    width: 230px;
    /* Sesuaikan dengan ukuran gambar */
    height: 230px;
    /* Sesuaikan dengan ukuran gambar */
    border-radius: 50%;
    /* Membuat gambar menjadi bulat */
    overflow: hidden;
    /* Untuk memastikan gambar tidak melewati batas bulatan */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

/* Clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}

/*konten data*/
.content {

    font-style: normal !important;
    max-width: 720px;
    /* Batas lebar konten, misalnya 600px */
    margin: 5px auto;
    /* Tengah secara horizontal & jarak dari atas/bawah */
    text-align: left;
    /* Rata tengah teks */
    padding: 5px;
    /* Spasi dalam */

}

.content em {
    font-style: normal;
}

.content span {
    font-style: italic;
}

/* aturan untuk normal dan italic pada id op di class content*/

.non-italic {
    font-style: normal;
}



/* Footer */
.footer {
    padding: 1px;
    text-align: right;
    background: white;
    margin-top: 10px;
}

/* Tombol scroll-to-top */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    /* tersembunyi secara default */
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
    background-color: #555;
}


/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {

    .leftcolumn,
    .rightcolumn {
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}