/* base HTML tag style */
body {
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height:20px;
  /* font-family: "Lato Regular"; */
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  color: #000;
  margin: 0;
}

a {
  color: #f28f1a;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin:15px 0;
  color:#f28a0e;
  /* font-family:'Lato Light'; */
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

h1 {
  font-size: 38px;
}

p {
  margin: 8px 0;
  line-height:26px;
}

table {
  width: 33%;
}

th, td {
  border-bottom: 1px dotted;
  text-align: center;
}

/* my arbitrary CSS classes*/
.container {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}

.front-page-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

#header-container {
  background-color: #ebebeb;
  border-bottom: 2px solid #f28a0e;
}

.header-nav {
  display: flex;
  width:100%;
  height: 8rem;
}

.logo-container {
  position: relative;
  flex-basis:33%;
  align-content: center;
}

.logo-container h3, h4 {
  position: absolute;
  top: 4.5rem;
  color: #343434;
}

.nav-button-container {
  position: relative;
  flex-basis: 67%;
  align-content: center;
}

.nav-links {
  float: right;
  display: inline;
}

.nav-item {
  font-size: 18px;
  line-height: 20px;
}

@media only screen and (max-width: 950px) {
  /* TODO NEED TO MAKE TITLE FULL WIDTH WHEN SCREEN IS UNDER 950 PIXELS*/

  .header-nav {
    height: 10rem
  }

  .logo-container {
    width: 100%;
    flex-basis: unset;
  }

  .logo-container h4 {
    position: absolute;
    top: 5.5rem;
    color: #343434;
  }

  .nav-button-container {
    position: relative;
    flex-basis: unset;
    align-content: center;
  }

  .nav-links {
    float: unset;
    display: inline;
  }
  
}

.nav-links a {
  padding: 0px 5px;
  margin: 10px 15px 0px 15px;
  color: #999b9d
}

.nav-links a:hover {
  color: #f28a0e;
}

/* footer style */
#footer-container {
  background-color: #ebebeb;
  height: 8rem;
  height: 50px;
  display: flex;
}

footer {
  align-content: center;
}

/* CSS Styles for loading images*/
.image-container {
  position: relative;
  width: 100%;
  text-align: center;
}

.my-image {
  max-width: 1000px;       /* sets maximum width on large screens */
  width: 100%;
  height: auto;             /* maintains original aspect ratio */
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
}

/* Lato Font: CSS Classes */
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
