  body, h1, h2, h3, h4, h5, h6 {
  color: #5b5b5b;
  font-family: 'Roboto', sans-serif;
}

   nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 150px;
    background-color: #ffffff;
    height: 80px;
    padding: 20px;
  }
  
  #logo {
    width: auto;
    height: 80px;
    margin-right: auto;
    margin-top: 10px;
  }
  
  #primary-navigation-menu {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  #primary-navigation-menu > li {
    position: relative;
    margin-left: 20px;
  }
  
  #primary-navigation-menu > li > a {
    display: block;
    color: #5b5b5b;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 60px;
    padding: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  #primary-navigation-menu > li > a:hover {
    background-color: #eeeeee;
    color: #dda146;
  }

#primary-navigation-menu > li > ul {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 400px; /* set width to accommodate two columns */
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 10px 0;
  list-style: none;
  columns: 2; /* set number of columns */
  column-gap: 20px; /* set gap between columns */
}
  
  #primary-navigation-menu > li:hover > ul {
    display: block;
  }
  
#primary-navigation-menu > li > ul > li > a {
  display: block;
  color: #3f82ad;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  padding: 10px 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
  
  #primary-navigation-menu > li > ul > li > a:hover {
    background-color: #eeeeee;
    color: #dda146;
  }

#content {
    width: 850px;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 15px;
    background-color: #ffffff;
    padding: 75px; 75px; 75px; 75px;
}

body {
  background-color: #d68b00;
}

header {
  background-color: #ffffff;
}

  .gallery {
      display: flex;
      flex-wrap: wrap;
    }

    .gallery img, .gallery video {
      width: 150px;
      height: 150px;
      object-fit: cover;
      margin: 5px;
      cursor: pointer;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
    }

    .modal-content {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 80%;
      max-height: 80%;
      margin: 10% auto;
    }

    .modal-content img, .modal-content video {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
.playlist-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.playlist-item {
  flex: 1 0 calc(50% - 10px);
  margin-bottom: 20px;
}
.playlist-item h2 {
  font-size: 16px;
}
