* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
}

.btn {
    padding: 10px 20px;
    background-color: #f7c660;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
}

.text {
    max-width: 900px;
}

.text h1 {
    font-size: 100px;
    margin-bottom: 20px;
    color: #ffffff;
}

.text h2 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ffffff;
}

.text p {
    margin-bottom: 20px;
    font-size: 18px;
}






header {
    padding: 20px 0;
    background-color: black;
}

nav ul {
    display: flex;
    justify-content: flex-start;
    padding-left: 50px;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f7c660;
}






.banner {
    font-size: 1px;
}

.banner img {
    width: 100%; 
}

.banner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    background-color: #d6600000;

    position: absolute;
    top: 120px;

    z-index: 1;
}

.banner-content img {
    width: 500px;
}






.quote {
    text-align: center;
    background-color: #000000;
    padding: 40px;
}

.quote p {
    font-size: 35px;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.quote strong {
   color: #fff;
   font-size: 35px;
}

.quote span {
    color: #fff;
    font-style: normal;
    font-weight: bold;
}

.quote img {
    width: 30px;
    padding-top: 20px;

    justify-content: flex-start;
}






.aboutme {
    background-color: #0e0e0e;
    padding: 50px 0px 50px 0px;
}

.aboutme-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.aboutme-content-text{
    padding: 0px 0px 0px 80px;
    text-align: end;
}

.aboutme-content-text p {
    font-size: 22px;
    color: #f7c660;
}

.aboutme-content img {
    width: 400px;
}





body {
    height: 100%;
    width: 100%;
    background: #111111;
  }
  
.container {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 250px;
    width: 100%;
  }

  .container2 {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 420px;
    padding-bottom: 100px;
    width: 100%;
  }
  
  .container3 {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100px;
    padding-bottom: 100px;
    width: 100%;
    background-color: #9e1a1a;
  }

.clock {
    display: flex;
  }
  
.clock div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    margin: 10px;
    padding: 10px;
    color: #f7c660;
  
    background: black  ;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    
  
  }
  
.clock div span {
    font-size: 55px;
    color: white;
    font-weight: 700;
  }
  
.title {
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    padding-top: 120px;
    font-size: 80px;
    color: #ffffff;
  }
  
@media (max-width: 500px) {
    .title {
      font-size: x-large;
    }
  
.clock div {
      width: 70px;
      height: 70x;
      margin: 5px;
      padding: 5px;
      
    }
  
    .clock div span {
      font-size: 25px;
      
      font-weight: 700;
    }
  }





  
.education {
    background-color: black;
    padding: 50px 0px 50px 0px;
}

.education-logo {
    display: flex;
    justify-content: center;
    background-color: black;
    padding: 50px 0px 0px 0px;
}

.education-logo-text {
    text-align: center;
    font-size: 50px ;
}

.education-logo img {
    width: 200px;
}

.education-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 50px 0px 0px 0px;
}

.education-content-text{
    padding: 0px 0px 0px 80px;
   
}

.education-content-text p {
    font-size: 30px;
    color: #f7c660;
}

.education-content-text span {
    font-size: 30px;
    color: #000000;
}

.education-content img {
    width: 500px;
    
}









/* Banner container */
.banner-bawah {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Banner image */
.banner-bawah img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 6s infinite;
}

/* Different delay for each image to create the slideshow effect */
.banner-bawah img:nth-child(1) {
    animation-delay: 0s;
}
.banner-bawah img:nth-child(2) {
    animation-delay: 2s;
}
.banner-bawah img:nth-child(3) {
    animation-delay: 4s;
}


/* Keyframes for image fade in/out */
@keyframes imageAnimation {
    0% {
        opacity: 0;
    }
    33.33% {
        opacity: 1;
    }
    66.66% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}






.spacing {
    background-color: #ffffff;
    padding: 10px 0px 0px 0px;
}

.portfolio-title {
    background-color: #000000;
    padding: 10px;
    text-align: center;
    font-size: 50px;
}


.portfolio-logo {
    background-color: #000000;
    padding: 40px 0px 0px 0px;
}
  
.portfolio-logo h2 {
    font-size: 50px;
    padding-left: 50px;
}



.scroll-container {
    background-color: #000000;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
  }

  .scroll-container p {
    font-size: 80px;
    font-weight: bold;
  }
  
.scroll-container img {
    padding: 50px;
  }

.portfolio-card{
    width:500px;
    height: 500px;
}

.portfolio-intro {
    text-align: center;

    
}




.portfolio-bcard {
    background-color: #0e0e0e;
    padding: 40px 0px 40px 0px;
}
  
.portfolio-bcard h2 {
    font-size: 50px;
    padding-left: 50px;
}

.scroll-container-bcard {
    background-color: #0e0e0e;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
}

.scroll-container-bcard img {
    padding: 10px 50px 0px 50px;
  }
.portfolio-cardbcard{
    width:700px;
    height: 700px;
}
.portfolio-intro-bcard {
    text-align: center;
    
}


.scroll-container {
    background-color: #000000;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
  }

  .scroll-container p {
    font-size: 80px;
    font-weight: bold;
  }
  
.scroll-container img {
    padding: 50px;
  }

.portfolio-card{
    width:500px;
    height:500px;
}

.portfolio-intro {
    text-align: center;

    
}






.foto {
    background-color: black;
    padding: 40px 0px 0px 0px;
}

.foto-baris1 {
    display: flex;
    justify-content: center;
    background-color: black;
    padding: 40px;
}

.foto-baris1 img {
    width: 1628px;
}

.foto-baris1 video {
    width: 1500px;
}









  .scroll-container-bcard5 p {
    font-size: 80px;
    font-weight: bold;
  }
  
.scroll-container-bcard5 img {
    padding: 50px;
  }

.portfolio-cardbcard5{
    width:500px;

}

.portfolio-intro5 {
    text-align: center;

    
}






.contactme {
    background-color: #0e0e0e;
    padding: 50px 0px 50px 0px;
}

.contactme h2 {
    font-size: 70px;
    padding-left: 50px;
    text-align: center;
}

.contactme-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.contactme-content-text{
    padding: 0px 0px 0px 80px;
    text-align: end;
}

.contactme-content-text p {
    font-size: 22px;
    color: #f7c660;
}

.contactme-content-text img {
    width: 1000px;
}






.footer {
    background-color: #000000;
    padding: 10px 0px 10px 0px;
}

.footer p {
    text-align: center;
}