
main {
    font-family: 'Courier New', Courier, monospace;
    color: white; 
    padding-left: 1rem;
    padding-right: 1rem;
}

 .category {
    display: flex; 
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
} 

.option {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    border-top: 0.1rem solid darkred;
}

h2 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

h3 {
    margin: 0 .7rem 0; 
    font-size: 1.2rem;
}

.specialty-pizza-pricing {
    font-size: 1.2rem;
    padding-bottom: 0.75rem;
}

.specialty-pizza-pricing table{
    margin-left: auto;
    margin-right: auto;
}

.pizza-price {
    padding: 0 0.75rem 0 0.75rem;
    text-align: left;
}

.pizza-size {
    text-align: left;
    padding-left: 0.75rem;
}

.price {
    padding-top: 0.25rem;   
    font-size: 1.1rem;
}

.message {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.description {
    font-size: 1rem;
    color: lightgrey;
    padding-bottom: 0.75rem;
    padding-right: 0.5rem;
}


/* Style the horizontal scrollable menu bar */
.scrollmenu-navbar {
    display: flex; /* [1] */
    flex-wrap: nowrap; /* [1] */
    overflow-x: auto; /* [2] */
    -webkit-overflow-scrolling: touch; /* [3] */
    -ms-overflow-style: -ms-autohiding-scrollbar; /* [4] */ 
    border-radius: 3px 3px 0 0;
}

.scrollmenu-navitem {
    flex: 0 0 auto;
    color: white;
    text-decoration: none;
    padding: 13px 16px 13px 16px;
    margin: 5px;;
}

.scrollmenu-navitem:hover {
    background-color: hsl(0, 0%, 10%);
}


/* This styles the Create Your Own Pizza Section */
.pizza-pricing table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0 0 0.75rem 0;
    padding: 0;
    width: 98%;
    table-layout: fixed; 
}

.pizza-pricing table tr {
    border: 1px solid #ddd;
    padding: .35rem;
}

.pizza-pricing table th,
.pizza-pricing table td {
  padding: .625rem;
  text-align: center;
  font-size: 0.9rem;
}

.pizza-pricing table th {
  font-size: .9rem;
  letter-spacing: .1rem;
  text-transform: uppercase;
}

.grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: center;
    justify-content: center;
    font-size: 1.1rem;
}

.grid-item {
    list-style: none;
}

/* Style the Pricing Table in Mobile format */
@media screen and (max-width: 600px) {
    .pizza-pricing table {
      border: 0;
    }
    
    .pizza-pricing table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    .pizza-pricing table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625rem;
      margin-right: .75rem;
    }
    
    .pizza-pricing table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: .9rem;
      text-align: right;
    }
    
    .pizza-pricing table td::before {
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    .pizza-pricing table td:last-child {
      border-bottom: 0;
    }  

    .grid-list {
        grid-template-columns: repeat(2, 1fr);
        font-size: 1rem;
    }

    /* the font can stay small in mobile */
    .price {
        font-size: 0.9rem;
    }

    .description {
        font-size: 0.8rem;
    }

    .specialty-pizza-pricing {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.25rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }

    .message {
        font-size: 1.1rem;
    }
    
}
