{
  box-sizing: border-box;
}


/* Style the header */
header {
   -webkit-flex: 1;
  
  padding: 30px;
  
  background-image: url("tubabg.jpg");
  
  
  background-repeat: no-repeat;
  background-position: right top;
  
  background-size: cover;
  background-position: right bottom;
  background-attachment: fixed;
 }

/* Container for flexboxes */
section {
  display: -webkit-flex;
  display: flex;
  background-color:#FCBA12;
}

/* Style the navigation menu */
nav {
 -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #FED777;
  padding: 20px;
  font-family: "Fjalla One", serif;
  color:#342809;
}


/* Style the content */
article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: #FFF5DC;
  padding: 10px;
}



h1 {
    font-size:100px;
    font-family: "Fjalla One", sans-serif;
    
  text-align: center;
  opacity: 1;
  border: 3px solid black;
  background-color:#FCBA12;
}

h4 {
    font-family: "Fjalla One", sans-serif;
    font-size:25px;
}

p {
    font-family: "Libre Baskerville", serif;
}

li {
    font-family: "Libre Baskerville", serif;
}



td {
    font-family: "Libre Baskerville", serif;
    border: 3px solid black;
}

h6 {
    font-family: "Libre Baskerville", serif;
}

th {
    font-family: "Libre Baskerville", serif;
    border: 3px solid black;
}

img {
    border-color:#FED777;
    border-width:20px;
    border-style:solid;
    
}



/* INDEX HTML */
.tuba {
    font-size:15px;
}

.differentmodelsoftubas {
    font-size:15px;
}





/* Style the table*/
 table{
    overflow-x:auto;
    border: 3px solid black;
  }

/* Style the footer */
footer {
   -webkit-flex: 1;
  background-color:#342809;
  padding: 10px;
  text-align: center;
  color: white;
  font-family: "Libre Baskerville", serif;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */

@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }