* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;

}
body {
    background-color: #EAEAEA;
}

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 20px;
}

/* Logo styles */
.header .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: hsl(0, 100%, 100%);
}

/* Navigation styles */
.header-nav ul {
    list-style-type: none;
    display: flex;
}

.header-nav ul li {
    margin-left: 20px;
}

.header-nav ul li a {
    text-decoration: none;
    color: #f39c12;
    font-size: 18px;
    padding: 8px 12px;
    transition: background-color 0.3s;

}
/* Hover effect */
.header-nav ul li a:hover {
    background-color: #fff;
    border-radius: 4px;
}
.div {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
}
h1 {
    color: #f39c12;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 8px solid gray;
}
img {
    height: 300px; 
}
.container {
    padding: 120px;
    background-color:   #333 ;
    border-radius: 20px;
    margin: 50px;
    position: relative; /* Agar animasi bergerak relatif terhadap posisi awal */
    animation: slide 2s ease forwards; /* Menjalankan animasi sekali */
}
.text-container {
    color: #C4DFE6;
    margin: 10px;
    text-align: center;
}
.project {
    padding: 120px;
    background-color: #333;
    border-radius: 20px;
    margin: 50px;
   position: relative; /* Agar animasi bergerak relatif terhadap posisi awal */
    animation: slide 2s ease forwards; /* Menjalankan animasi sekali */
}

 
    
@keyframes slide {
    50% {
        transform: translateX(200px); /* Posisi awal */
    }
    100% {
        transform: translateX(0); /* Bergerak ke kanan */
    }
}
h1 {
    text-align: center;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h4 {
    margin-bottom: 10px;
    color: #f39c12;
}

.footer-section p, .footer-section ul {
    margin: 5px 0;
    line-height: 1.5;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    margin-right: 15px;
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}
p,h1,h2,h3,h4,li,a {
    font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
.maps {
    padding: 10px;
}

iframe {
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 40px gainsboro;
}
@media (max-width: 600px) {
  * {
      font-size: 2vw;
      margin: 2px;
    }
}