.gambarluhur {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.gambarup {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #ffffff; 
    border-bottom: #575757 1px solid;
}

.navbar ul {
    list-style-type: none; 
    padding: 0; 
    margin: 0;
    display: flex;
}

.navbar li {
    margin: 0 10px;
}

.navbar a {
    color: rgb(0, 0, 0);
    padding: 15px 20px;
    text-decoration: none;
}

.navbar a:hover {
    border-radius: 8px;
    text-shadow: blue 0px 10px 10px;
    transition: 0.5s;
    border-bottom: blue 1px solid;
    color: blue;
}

.container {
    display: flex;
    justify-content: space-between;
}

.sidebar {
    width: 20%;
    background-color: #f4f4f4;
    padding: 1rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.left-sidebar {
    margin-right: 1rem;
}

.right-sidebar {
    margin-left: 1rem;
}

article {
    background-color: #ffffff;
    margin-bottom: 2rem;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s; 
    width: 80px; 
    height: 120px;
    justify-content: center;
    
}

article:hover {
    transform: scale(1.02);
    box-shadow: black 0px 10px 10px;
    border: black solid 1px;
    
}

article h3 {
    margin: 0 0 0.5rem 0;
}

article p {
    margin: 0;
}

.content {
    width: 60%;
    padding: 1rem;
    justify-content: space-between;
    display: flex;

}
.konten{
    width: 100%;
    height: 85px;

}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f4f4f4;
}
