@font-face {
  font-family: 'Arkhip';
  src: url('./Fonts/Arkhip_font.otf') format('truetype'),
    url('./Fonts/Arkhip_font.otf') format('truetype');
}

@font-face {
  font-family: 'Gotham';
  src: url('./Fonts/GothamMedium.ttf') format('truetype'),
    url('./Fonts/GothamMedium.otf') format('truetype');
}

@font-face {
  font-family: 'GothamBold';
  src: url('./Fonts/GothamBold.ttf') format('truetype'),
     url('./Fonts/GothamBold.otf') format('truetype');
}

@font-face {
  font-family: 'GothamLight';
  src: url('./Fonts/GothamLight.ttf') format('truetype'),
    url('./Fonts/Gotham-Light.otf') format('truetype');
}

* {
  list-style: none;
  text-decoration: none;
}

header {
  height: 110px;
  width: 100%;
  margin-right: 10px;
  background-color: #222222;
}

.navbar {
  position: absolute;
  padding-right: 50px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.navbar .home-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar img {
  height: 110px;
}

.navbar h2 {
  color: white;
  font-family: Arkhip, GothamBold, Arial, Helvetica, sans-serif;
  font-weight: 50;
  font-size: medium;
}

.navbar a {
  color: white;
  font-family: Arkhip, GothamBold, Arial, Helvetica, sans-serif;
  font-size: 1.1em;
}

.navbar .nav-links ul {
  display: flex;
}

.navbar .nav-links li {
  margin: 0 7px;
}

.navbar .nav-links ul li.active a {
  color: #ffa000;
}

.navbar .nav-links ul li:hover a {
  color: #ffa000;
}
.navbar .menu-hamburger {
  display: none;
  height: 30px;
}



@media screen and (max-width: 901px) {
  .navbar .menu-hamburger {
    display: block;
    position: absolute;
    top: 38px;
    right: 50px;
  }

  .nav-links {
    margin: 0;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #222222;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -120%;
    transition: all 0.5s ease;
  }

  .nav-links.mobile-menu {
    margin-left: 0;
  
  }
  .nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav-links li {
    margin: 25px 0px;
    font-size: 2em;
  }
}

/*

header {
  width: 100%;
  height: 120px;
  background-color: #222222;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-family: Arkhip, GothamBold, Arial, Helvetica, sans-serif;
  font-size: 0.8em;
  text-decoration: none;
  text-shadow: none;
}

header h2 {
  font-size: medium;
  font-family: Arkhip, GothamBold, Arial, Helvetica, sans-serif;
}

*/ 

body h2 {
  font-family: Arkhip, GothamBold, Arial, Helvetica, sans-serif;
}

/*

#homeButton {
  height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-variant: small-caps;
}

#homeButton img {
  height: 109px;
}

.navMenu {
  position: absolute;
  right: 5%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.navMenu a {
  font-family: Arkhip, Gotham, Arial, Helvetica, sans-serif;
  display: inline-block;
  color: #f6f4e6;
  font-size: 150%;
  font-variant: small-caps;
  text-decoration: none;
  margin: 10px;
}

.navMenu a:hover {
  color: #ffa000;
}

.navMenu a.active {
  color: #ffa000;
}

*/
body h2 {
  font-family: Arkhip, GothamBold, Arial, Helvetica, sans-serif;
  text-align: center;
}

body h3 {
  font-family: Arkhip, Gotham, Arial, Helvetica, sans-serif; 
}

body p {
  font-family: GothamLight, Arial, Helvetica, sans-serif;
}
  
  
  div.container {
    margin-left: auto;
    margin-right: auto;
  }

  table#table1 {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: 475px;
  }

  table td.even {
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
  }

  tbody td {
    padding: 10px;
    font-family: GothamLight, Arial, Helvetica, sans-serif;
  }

  tbody tr:nth-child(odd) {
    background-color: white;
  }

  tbody tr:nth-child(even) {
    background-color:#d8d8d8;
  }

  tbody tr:nth-child(even):hover {
    background-color: white;
  }

  tbody a {
    color: black;
    text-decoration: none;
  }

  tbody a:hover {
    color: #ffa000;
  }

  section#faq {
    width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
  }

  section#faq h3 {
    margin-top: 50px;
  }

  section#faq #firstquestion {
    margin-top: 0;
  }

  section#faq p {
    white-space: normal;
    text-align: justify;
  }

  
