* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    color: #222;
}


header {
    font-style: italic;
    font-size: 10px;
    background: #003366;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}

.hero {
    background: url('images/220370.jpg') no-repeat center center/cover;
    height: 500px; 
    display: flex;
    flex-direction: column; 
    justify-content: flex-end; 
    align-items: center; 
    text-align: center;
    color: #888888;
    padding-bottom: 5px; 
}

.section {
    padding: 50px 20px;
    text-align: center;
    margin: 10px 0;
    border-radius: 10px;
}

.galeri {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 10px;
}

.galeri img {
    border-radius: 20px; 
    transition: transform 0.4s ease, filter 0.3s ease;
    
}

.galeri img:hover {
    transform: scale(1.25); 
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
      
}


footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 15px;
}
