* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body{
    font-family: 'Nunito', sans-serif;
  }
  
  /* Hide the menu to the side on mobile and not allow scrolling to the side */
  html {
    overflow-x: hidden;
  }
  .header{
    display: flex;
    flex-wrap: nowrap;
    flex: 1 0 67%;
    align-items: center;    
    position: absolute;
    width: 100%;
    z-index: 10;
  }
  /* basic styles for the header component */
  nav {
    padding: 20px;
    flex-grow: 1;
    flex-shrink: 1;    
    text-align: right;
    margin-left: auto;
    padding-left: 1.6vw;
  }
  
  /* Make nav menu items take full width allocated */
  .navMenu ul {
    display: flex;
    justify-content: flex-end;
  }
  
  .navMenu li {
    list-style: none;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    margin: 0 1em;
  }
  .navMenu li:last-child{
    margin-right: 0;
  }
  
  .navMenu li:hover {
    color: blue;
  }
  
  /* Styles for the hamburger menu icon */
  #hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  
  #hamburger div {
    width: 22px;
    height: 2px;
    background-color: black;
    margin: 4px 0;
    transition: 0.5s;
  }
  
  #hamburger {
    display: none;
  }
  .navMenu.nav-active{
    display: block;
  }

  @media screen and (max-width: 768px) {
    #hamburger {
      display: block;
    }
  
    .navMenu {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-color: black;
      transform: translateX(100%);
      transition: 0.5s;
      display: none;
    }
  
    .navMenu ul {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 15px 0;
    }
  
    .navMenu li {
      color: white;
      padding: 15px 0;
      margin: 0;
    }
    .section#songkick div{
      width: 100%;
    }
  }
  
  /* Extra utility classes to be added with JS */
  
  .nav-active {
    transform: translateX(0);
    position: absolute;
    height: 100vh;
    width: 100%;
  }
  
  #hamburger.toggle div {
    background-color: white;
  }
  
  .toggle #bar1 {
    transform: rotate(-45deg) translate(-5px, 4px);
  }
  
  .toggle #bar2 {
    opacity: 0;
  }
  
  .toggle #bar3 {
    transform: rotate(45deg) translate(-5px, -4px);
  }
  
  .navMenu li a{
    text-decoration: none;
    color: #fff;
  }
  .navMenu.nav-active li a{
    color: #fff;
  }
.logo{
    flex-grow: 0;
    flex-shrink: 0;
    backface-visibility: hidden;    
}
.logo a{
    margin-left: 1em;
}
.logo a img{
    height: 100px;
}
.first{
    background-image: url(bak.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;    
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}
h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px; /* Large title font size */
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 16px; /* Readable text font size */
    color: #666;
    line-height: 1.6;
}
.section{
    padding: 2em;
    min-height: 240px;    
    background-color: rgb(230, 228, 232);
    display: flex;        /* Enable Flexbox */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center vertically */
    align-items: center;  /* Center horizontally */
    text-align: center;   /* Center text alignment */

}
.section:nth-child(odd){
    background-color: #fff
}
.section .content h2{
    text-align: center;
    margin-bottom: 1em;
}   
.section .content p{
    text-align: center;
}
.section#songkick{
  background-color: #000
}
.section#songkick div{
  width: 100%;
}
.section a{
  color:#000;
}