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

/* Style the navigation bar */
.navbar, footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f3f3eb;
  padding: 10px 20px;
  justify-content: space-between;
  font-family: "Unica One", sans-serif;

}

.logo {
  height: 100px;
}

/* Style the logo */
.footer {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: "Unica One", sans-serif;
}

/* Style the navigation links */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-family: "Unica One", sans-serif;
  font-size: 25px;
}

/* Style the burger menu for small screens */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      background-color: #333;
      position: absolute;
      top: 60px;
      right: 0;
      left: 0;
      z-index: 1;
  }

  .nav-links.active {
      display: flex;
  }

  .burger-menu {
      display: flex;
  }
}

h1 {
  margin: 5%;
  font-family: "Unica One", sans-serif;
  align-items: center;
  justify-content: center;
  display: flex;
}

p {
  margin-left: 10%;
  margin-right: 10%;
  font-size: 20px;
}

body {
    font-family: "Noto Sans", sans-serif;
  }

 /* .header {
    grid-area: header;
  }

  .footer {
    grid-area: footer;
  }*/

  
  .wrapper {
    margin: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 50px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
  }
  
  .box {
    background-color: #444;
    color: #fff;
    height: 290px;
    border-radius: 10px;
    padding: 100px;
    font-size: 1.5rem;
    font-family: "Unica One", sans-serif;
    text-shadow: 4px 4px 8px #312e2e;
    background-size: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .box a{
    text-decoration: none;
    color: inherit;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  #aa {
    background-image: url(/assets/images/bibim.jpg);
  }

  #bb {
    background-image: url(/assets/images/hangul1.jpg);
  }

  #cc {
    background-image: url(/assets/images/hanbok.jpg);
  }
  
  #dd {
    background-image: url(/assets/images/anma.jpg);
  }

  #ee {
    background-image: url(/assets/images/seoul.jpg);
  }

  #ff {
    background-image: url(/assets/images/cycle.jpg);
  }

  #gg {
    background-image: url(/assets/images/wedding.jpg);
  }

  #hh {
    background-image: url(/assets/images/market.jpg);
  }

  #ii {
    background-image: url(/assets/images/modern.jpeg);
  }

  @media only screen and (max-width: 768px) {
    .wrapper {
      display: grid;
      grid-template-columns: 1fr;
      padding: 1em;
      grid-row-gap: 100px;
    }
  }
/*.header,
.footer {
  background-color: #999;
}
*/

ul {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.feed li {
  width: 100%;
  height: 100%;
  list-style: none;
  font-size: 2rem;
  font-family: "Unica One", sans-serif;
  align-items: center;
  height: 200px;
  scroll-snap-align: start;
  display: flex;
  flex-shrink: 0;
  position: relative;
  justify-content: center;
  transition: transform 0.5s ease 0s;
  background-color: bisque;
}

.feed a {
  left: 45vw;
  margin: 10px;
  cursor: pointer;
}

section {
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  background-color: #deceff;
  border: none;
  border-radius: 1rem;
  width: 170px;
  padding: 0.3rem;
  text-align: center;
  color: #4000c7;
  margin-top: 0.4rem;
  margin-left: 1.9rem;
  cursor: pointer;
}

button:hover {
  color: white;
  background-color: #4000c7;
  box-shadow: 1px 2px 1px rgb(189, 189, 189);
}

