@font-face {
  font-family: "Helvetica-Neue";
  font-style: medium;
  src: url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.woff') format("woff"),
  url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.ttf') format("truetype"),
  url('/fonts/Helvetica-Neue/helveticaneue_medium-webfont.svg') format("svg");
  }

@font-face {
  font-family: "Helvetica-Neue-Bold";
  font-style: bold;
  src: url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.woff') format("woff"),
  url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.ttf') format("truetype"),
  url('/fonts/Helvetica-Neue-Bold/helveticaneuebd-webfont.svg') format("svg");
  }

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent; 
  text-decoration: none;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Helvetica-Neue;
}

h1, h2 {
  margin: 0;
}

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

h2 {
  font-family: Quieta-Medium;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

p {
  margin: 0;
  font-family: Quieta-Medium;
  font-size: 1.2rem;
  text-align: left;
}

.title2:hover {
  text-decoration: underline;
}

.flex {
  display: flex;
}


/*HEADER*/

#logo {
  margin: 0 auto;
  font-size: 0;
}

.container {
  margin: 0 auto;
  width: 75%;
}

.container-large {
  justify-content: center;
  padding: 2rem 0;
}

.top {
  position: relative;
  display: flex;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: center;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #000;
}

.navbar div {
  display: flex;
}

.navbar a {
  padding: .85rem;
}

.hamburger {
  display: none;
  position: absolute;
  padding: .85rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.main-title {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 200;
  padding: 1rem 0;
  padding-right: 1rem;
  border-bottom: 1px solid #000;
}

/*MAIN*/

.article {
  display: flex;
  height: 20rem;
  margin-top: 2rem;
  padding-bottom: 1.5rem;
}

.border {
  border-bottom: 1px solid #000;
}

.content {
  display: flex;
  width: 50%;
  height: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.image {
  overflow: hidden;
  width: 50%;
  height: 100%;
}

.image-mini {
  overflow: hidden;
  width: 100%;
  height: 20rem;
}

.desc-mini {
  font-size: 1.4rem;
  margin-top: 1rem;
  justify-content: center;
  justify-items: center;
  font-family: Quieta-Medium;
  font-weight: 600;
}

.img {
  position: relative;
  min-height: 100%;
  min-width: 100%;
  max-width: 175%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title {
  display: inline-block;
  text-align: left;
  margin: 2rem;
  max-width: 500px;
}

.timestamp {
  color:#8E8E8E;
  font-size: 1.3rem;
  font-family:Helvetica-Neue;
  font-weight: 200;
}

.title-mini {
  font-size: 1.4rem;
}

@media only screen and (max-width: 1240px) {
  h2 {
    font-size: 1.8rem;
  }
}


/*FOOTER*/

.footer {
  display: flex;
  border-top: 1px solid #000;
}

.col {
  width: 33%;
  padding-top: .85rem;
}

.footer-link {
  padding: .85rem;
}

.start {
  /*text-align: start;*/
  text-align: left;
}

.center {
  text-align: center;
}

.end {
  /*text-align: end;*/
  text-align: right;
}

@media only screen and (max-width:960px) {
  .hamburger {
      display: initial;
  }

  .navbar {
      display: none;
  }

  .top {
      border-bottom: 1px solid #000;
  }

  .footer {
      flex-direction: column;
  }

  .start {
      text-align: center;
  }

  .end {
      text-align: center;
  }

  .col {
      width: 100%;
    }

    .article {
      flex-direction: column-reverse;
      height: unset;
    }

    .content, .image {
      width: 100%;
    }

    .image {
      height:15rem;
    }

    .title {
      margin: 1.2rem;
    }

    h2 {
      font-size: 1.55rem;
    }

    p {
      font-size: 1rem;
    }

    .timestamp {
      font-size: 1.2rem;
    }

}

/*TAB*/

.nav-icon {
  height: 18px;
  padding-right: .5rem;
}

li  {
  list-style-type: none; 
}

ul.nav {
  margin: 0;
  padding-left: 1rem;
  padding-top:2.5rem;
  text-align: left;
  align-items: start;
}

a.nav {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  font-size: 1.2rem;
}