@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar {
    height: 100px;
    background-color: #FFFAF0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 85%;
    margin: 0 auto;
    height: 100%;
}

.navbar .container .logo {
    width: 15%;
}

.navbar .container .logo img {
    width: 80%;
    cursor: pointer;
}

.navbar .container .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .container .links li {
    list-style: none;
}

.navbar .container .links li a {
    text-decoration: none;
    font-size: 17px;
    padding: 0 10px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Bebas Neue", Sans-serif;
    letter-spacing: 2.6px;
    transition: color .3s ease-in-out;
}

.navbar .container .links li a:hover {
    color: #FFFAF0;
}

/* HERO  */
.hero {
    background: url("img/bg3.png");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100%;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 85%;
    margin: 0 auto;
    height: 100%;
    padding-top: 60px;
}

.hero .container .text {
    flex-basis: 45%;
}

.hero .container .text h1 {
    font-size: 80px;
    font-family: "Alfa Slab One", Sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fbefef;
}

.hero .container .img {
    flex-basis: 45%;
}

.hero .container .img img {
    width: 500px;

}

.description .images {
    display: flex; /* Menampilkan gambar secara horizontal */
  }
  
  .description .images img {
    max-width: 350px; /* Mengatur lebar maksimum gambar */
    margin-right: 30px; /* Jarak antara gambar */
  }

  .description h2 {
    font-size: 40px; /* Ukuran font tulisan EVENT */
    font-family: fantasy;
    margin-top: 50px;
    margin-left: 90px;
    margin-bottom: 20px;
  }

  .contact h2 {
    font-size: 40px; /* Ukuran font tulisan EVENT */
    font-family: fantasy;
    margin-top: 50px;
    margin-left: 1250px;
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center; /* Mengatur letak gambar menjadi di tengah */
  }
  
  .social-icons a {
    display: flex;
    flex-direction: column;
    align-items: center; /* Mengatur letak teks dan gambar menjadi di tengah */
    margin: 0 10px; /* Mengatur jarak antara setiap ikon */
  }
  
  .social-icons img {
    width: 50px; /* Mengatur ukuran gambar */
    height: 50px; /* Mengatur ukuran gambar */
  }

  .contact h3 {
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #171616;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  }
  
  
  