* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 50px;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

h2 {
  font-size: 40px;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

h3 {
  font-size: 30px;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}

p {
  font-size: 18px;
}

/*-- TOPNAV --*/
.logo img {
  position: absolute;
  top: 2px;
  left: 10%;
}

.topnav {
  overflow: hidden;
  background: black;
  width: 100%;
  /* height: auto; */
  text-align: center;
  padding-left: 35%;
  padding-right: 10%;
}

.topnav a {
  display: inline-flex;
  color: white;
  padding: 35px 20px;
  text-decoration: none;
  font-size: 18px;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

.topnav a:hover {
  color: cyan;
}

.topnav a.active {
  color: cyan;
}

.topnav a.icon {
  color: white;
  display: none;
}

@media screen and (max-width: 1300px) {
  .topnav a {
    display: none;
  }
  .topnav a.active {
    display: none;
  }
  .topnav a {
    float: left;
  }
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 10%;
    top: 0px;
  }
  .topnav.responsive {
    padding-top: 80px;
    width: 100%;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: right;
  }
}
