:root {
    --menu-count:4;
    --drop-count:2:
}

html, body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

body {
    background-color: #bfb7b0;;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 100%;
    overflow-y: scroll;
}

.row {
    margin-top: 11vh;
}

.column {
    float: left;
    width: 33.33%;
    /*padding: 5px;*/
}
  
.row::after {
    content: "";
    clear: both;
    display: table;
}

h1 {
    margin-top: 13vh;
    font-family: Happy;
    font-size: 1.75rem;
    text-align: center;
    padding: 2vh;
}

.price, .notes {
    background-color: #aed3f2;
    margin: 2vh;
    padding: 2vh;
}

.notes {
    padding-top: 3vh;
    padding-bottom: 3vh;
}

h2, h3 {
    font-family: Happy;
    text-align: center;
    padding: 2vh;
    font-size: 1.25rem;
}

p {
    line-height: 24px;
    font-size: 1.1rem;
}

ul {
    list-style: inside;
    list-style-type: disc;
}

ul, li {
    line-height: 24px;
    font-size: 1.1rem;
}

.table {
    /*padding: 2vh;*/
    margin: 2vh;
}

/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #aed3f2;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 1.1rem;
    line-height: 24px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #123c73;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #123c73;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    background-color: #6689f2;
  }

