* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: black;
}

h2 {
    font-size: 25px;
}

a {
   font-size: 20px; 
}

p {
    font-size: 15px;
}

        /* NAVBAR */
.bg-img {
  /* background image */
  background-image: url("img/logo.png") ,url("img/stockspaghetti.png");
  
  min-height: 820px;

  /* Center and scale the image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%, cover;
  
  /* position the navbar */
  position: relative;
}

/* Position the navbar container inside the image */
.nav_container {
  position: absolute;
  width: auto;
}

/* The navbar */
.topnav {
  overflow: hidden;
  margin: 20px;
}

/* Navbar links */
.topnav a {
  float: left;
  color: #E6E6E6;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

.topnav a:hover {
  color: #A60815;
}

.topnav a.active {
  color: #A60815;
}

/* MENU PAGE */

.row {
    display: flex;
}
/* Create two equal columns that floats next to each other */
.column_one, .column_two, .column_about, .column_contact{
  float: left;
  width: 50%;
  padding: 50px;
}

.column_map {
    float: left;
    width: 50%;
    padding: 10px;
    padding-right: 50px;
}

.column_two, .menu_container, .specials_container, .column_contact {
    color:#E6E6E6;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 10px;
    
}

.faq_container {
    color:#E6E6E6;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 80px;
}

.column_about {
    color:#E6E6E6;
    font-family: 'Raleway', sans-serif;
    text-align: left;
    padding:50px;
}

.about_img{
    width: 100%;
    height: auto;
}

.map_img {
    width: 100%;
    height: auto;
}

.pasta_img, .basil_img {
    width: 70px;  
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


.menu_container {
    background-color: white;
    color: black;
    text-align: center;
    padding:18px;
}

/*ABOUT*/
.about_img {
    padding: 20px;
}

/*Reservation button*/



/*FAQ*/
.faq_container {
    text-align: left;
}

/*small screen*/
@media screen and (max-width: 900px) {
    body {
        margin: 40px;
    }
    
    .column_one, .column_two, .column_about, .column_contact {
          float: left;
          width: 90%;
          padding:10px;
    }
    
    .column_map {
        float: left;
        width: 100%;
        padding: 10px;
        padding-right: 50px;
    } 

   
    .row {
        flex-direction: column;
    }
    
    .sig_img {
        width: 50%;
    }
    
    
    .bg-img {
         min-width: 500px;
    }
    h2 {
        font-size: 20px; 
    }
    
    a {
      font-size: 15px;  
    }
    
    p {
        font-size: 12px;
        }
    .topnav a {
        float: left;
        color: #E6E6E6;
        text-align: center;
        padding: 14px 5px;
        text-decoration: none;
        font-size: 10px;
    }
    p {
        font-size: 11px;
    }
    .res_link {
        font-size: 11px; 
        
    }
}
    
/*big screen*/
@media screen and (min-width: 901px) {
    
}