.header {
 display: flex;
 justify-content: space-between;  
 align-items: center; 
 padding: 15px 20px ;
 background-color: aqua;
}

.nav {
    display: flex;
    gap: 20px ;
}
.nav a {

    color: rgb(5, 6, 5);
}

.section img{
    width: 100%;
    max-height: 350px ;
    object-fit: cover;
    display: block;
}

.h2 {
    font-size: 30px ;
    text-align: center;
}

.isi {
    display: flex;
    justify-content: space-between;
}

.footer {
    text-align: center;
    background-color: blue;
}