
/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#kntl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 80px;
    background: #333;
    color: white;
    box-shadow: 0 5px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    max-height: fit-content;
}

main {
    margin-top: 20px;
}

/* Styling untuk body */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container-konten {
    gap: 20px;
}

section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.atas, .bawah {
    display: flex;
    gap: 10px;
    justify-content: center;
}
/* Opini dan News mengisi sisa ruang */
.opini, .news {
    flex-grow: 1;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
    text-align: start;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.banner img {
    width: max-content;
}
footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    background: #2c3e50;
    color: white;
    border-radius: 8px;
}
