* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #000000;
  width: 80%;
  margin: 20px auto;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

nav {
  font-family: "Rubik Mono One", monospace;
  font-size: 18px;
  display: grid;
  /* background-color: aquamarine; */
  grid-template-columns: 1fr 2fr;
  grid-template-areas: "brand" "menu";
  align-items: center;
}

.brand {
  grid-area: "brand";
  display: grid;
}

.menu {
  grid-area: "menu";
  display: grid;
}

.menu ul {
  display: grid;
  gap: 10px;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
}

.menu li {
  background-color: #fdfd03;
  padding: 6px;
  font-size: 15px;
}
a {
  text-decoration: none;
  color: black;
}
h2 {
  color: #fdfd03;
  font-size: 2rem;
}

a:hover {
  font-weight: 300;
  letter-spacing: 15px;
  text-transform: uppercase;
  color: white;
}

img {
  width: 100%;
  /* display: block; */
  /* width: 260px; */
  box-sizing: border-box;
}
.container {
  display: grid;
  align-items: center;
}

.gallery {
  margin: 20px auto;
  /* border: 7px solid seashell; */
  list-style: none;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* grid-gap: 5px; */
  /* justify-content: space-evenly; */
  /* justify-items: center; */
}

/* ==================================== Akhir TABS -------------------------------   */
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #fff;
  /* margin: 14px auto; */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Style the buttons that are used to open the tab content */
.tab span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab span:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab span.active {
  background-color: #fdfd03;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  color: #fdfd03;
  border-top: none;
  text-align: center;
}

/* ==================================== Akhir TABS ------------------------------- */
/* ==================================== Akhir SLIDE ------------------------------- */
* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  display: grid;
  margin-top: 40px;
  /* max-width: 1000px; */
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  /* animation-name: fade;
  animation-duration: 1.5s; */
  /* animation: slideIn 0.5s ease forwards; */
  animation: fade 1.5s ease-in-out forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* ==================================== Akhir SLIDE ------------------------------- */
