html {
    margin: 0;
    width: 100%;
}
body{
  margin: 0;
  width: 100%;
  background-color: #301934;
}
nav {
    height: 100px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    position: fixed;
    margin: 0;
    z-index: 500;
    top:0;
    box-shadow: 5px 5px 6px rgb(12, 0, 20);

}
.logo {
    height: 100px;
    width: auto;
}
.tabContainer {
    width: 100%;
    height: 100px; 
    display: inline;
  }
  .tabContainer.buttonContatiner {
   height: 100px; 
  }
  .buttonContainer {
    height: 100px;
    flex-wrap: nowrap;
    display: flex;
    padding-left: 20px;
  }

  .tabContainer .buttonContainer button {
    width: 19%;
    height: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    font-family: sans-serif;
    background-color: #000000;
    color: rgb(255, 255, 255); 
  }
  @media (max-width: 424px) {
    .tabContainer .buttonContainer button {
      font-size: 12px;
      height: 80px;
      width: 24%;
      font-weight: 600;
      
    }
    .logo {
      height:80px;
      width: auto;
    }
    nav {
      height: 80px;
      width: 100%;
    }
    .buttonContainer {
      padding-left: 3px;
    }
    .tabContainer.buttonContatiner {
      height: 80px;
    }
    #homePanel {
      display: none;
    }

  }

  .tabContainer .buttonContainer button:hover {
    color: rgb(225, 161, 255);
  }
  /* .tabContainer .buttonContainer button:active {
    background-color: rgb(92, 16, 163);
    border-bottom: 5px solid rgb(121, 0, 121);
    transition-duration: .2s;
  } */

  main {
    display: flex;
    z-index: 10;
    position: relative;
    margin-top: 120px;
    width: 100%;
  }

  .tabpanel {
    display: flex;
    width: 100%;
    height: 100vh;
    margin-top: 20px;
    text-align: center;
  }
  .tabs {
    display: flex;
    width: 100%;
    height: 100vh;
    margin-top: 20px;
  }

  .homeBox {
    padding-top: 20px;
    color: white;
    text-align: center;
    font-size: 25px;
    justify-content: center;
    width: 100%;
    height: 100vh;
    margin-top: 20px;
  }
  .shopbox {
    padding-top: 20px;
    color: white;
    text-align: center;
    font-size: 25px;
    justify-content: center;
    width: 100%;
    height: 100vh;
    margin-top: 20px;
  }

  .artbox {
    padding-top: 20px;
    color: white;
    text-align: center;
    font-size: 25px;
    justify-content: center;
    width: 100%;
    height: 100vh;
    margin-top: 20px;
  }

  .eventsbox {
    padding-top: 20px;
    color: white;
    text-align: center;
    font-size: 25px;
    justify-content: center;
    width: 100%;
    height: 100vh;
    margin-top: 20px;
  }
  .contactbox {
    padding-top: 20px;
    color: white;
    text-align: center;
    font-size: 25px;
    justify-content: center;
    width: 100%;
    height: 100vh;
    margin-top: 20px;
  }