header, main, nav, footer {
    text-align: center;
}

nav a {            /* links within "nav" container */
    padding:15px;
    padding-bottom:4px;
    font-size: 1.8em;
    text-decoration: none; /* removes underline*/
    color:white;  /* by default links are blue*/
    ;
}

nav a:hover {     /* pseudo-class*/
    border-bottom:2px orange solid;
    font-size: 2em;
    transition: .9s;    /* transition effect */
}

nav a.active {   /* make sure that the current menu page is red */
      color:red;
   }


body { /* fancy font for body */
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h1 { /* fancy font for header */
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100 !important;
}

h4 {
    font-size: 10px; /*using smaller font for the footer text */
    color: yellow;  /*using different color for the footer text */
}

h6 { 
    font-size: 16px; /*using this for the body qoute to look extra pretty*/
    font-family: cursive !important; 
}

table {
    margin: 0px auto;
}

td {
    padding-right: 10px;
    font-size: 1.3em;
}

#table-header {
    background-color: #351a00;
}

.table-row {
    background-color: #753900;
}

td strong {
    color: orange;
}

ul {
    width:500px;
    margin: 0 auto;
    text-align: left;
}

.hobby {
    color:orange;
}

iframe {
    margin: 0 auto;
}

main {
    display: flex;
    justify-content: center;
}

body {
    background-image: url('../img/background_pic.png');
    color: white;
}