body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url(/static/images/dot_white.png);
}

.wrapper {
  overflow: hidden;
}

/* Header bar styles */
header {
  position: relative;
  width: 100%;
  padding: 25px 0;
  background: #000;
  border-bottom: 1px solid #eaeaea;
}

.nav {
  margin: 0 auto;
  padding: 0 30px;
  text-align: right;
}

.nav-logo {
  float: left;
  margin-top: -13px;
  transition: transform 150ms ease-out;
}

.nav-logo:hover {
  transform: scale(1.1);
}

.nav-logo img {
  display: block;
  max-height: 50px;
  width: auto;
}

.nav-links {
  margin: 0;
  padding: 0;
  font-size: 18px;
  list-style: none;
}

.nav-links li {
  display: inline-block;
  margin: 0 0 0 30px;
}

.nav-links li:first-child {
  margin-left: 0;
}

.nav-links a {
  text-decoration: none;
  color: #999;
}

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

/* Splash page styles */
div.splash-title {
  position: relative;
  margin: 100px 0 0;
  padding: 0;
  width: 456px;
  left: 62.32px;
  background: #fff;
  font-size: 100px;
}
div.splash-logo {
  position: absolute;
  right: 60px;
  top: 454px;
  background: #fff;
}
img.splash-logo {
  width: 232px;
  height: 232px;
}
div.splash-mission {
  position: relative;
  margin-top: 130px;
  left: 225px;
  width: 547.2px;
  background: #fff;
  font-size: 26px;
}

/* Content page styles */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 15px 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  background: #fff;
}

.bookingscontent {
  max-width: 1250px;
  margin: 60px auto;
  padding: 0 15px 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  background: #fff;
}

.profilecontent {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 15px 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  background: #fff;
}

.article {
  margin-bottom: 30px;
}

.article-title {
  font-size: 34px;
  color: #222;
  margin: 0;
  line-height: 1.3;
}

.article-title a {
  text-decoration: none;
  color: #222;
}

.article-date {
  color: #ccc;
}

.article-duration {
  margin-top: 12px;
  float: right;
  font-size: 10px;
  padding: 1px 5px;
  font-weight: bold;
  border-radius: 3px;
  background: #bbb;
  color: #fff
}

.article-content p {
  margin: 15px 0 25px;
}

.article-content a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #555;
  #box-shadow: inset 0 -4px 0 #CBF8DF;
  background: transparent;
  transition: background 150ms ease;
}

.article-content a:hover,
.article-content a:focus {
  background: #CBF8DF;
}

.article-content hr {
  width: 150px;
  margin: 50px auto;
  height: 1px;
  overflow: hidden;
  border: none;
  background: #e5e5e5;
  clear: both;
}

.sponsor-list a,
.sponsor-list a:hover,
.sponsor-list a:focus {
  text-decoration: none;
  border: none;
  box-shadow: none;
  background: transparent;
}

img.member-logo {
  margin: 10px 25px;
}

img.leader-photo {
  margin: 25px 15px 5px 0px;
  float: left;
}

.button {
  background-color: #4ddb84;
  border: none;
  color: white;
  padding: 10px 20px;
  margin-bottom: 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* Footer style */
footer {
  position: fixed;
  bottom: 0;
  margin: 0;
  padding: 10px;
  width: 100%;
  background: #4ddb84;
  font-size: 10px;
}

/* Responsive styles for mobile (small screen) */
@media (max-width: 800px) {
  div.splash-title {
    position: relative;
    margin-top: 12vw;
    padding-bottom: 5vw;
    left: 60px;
    font-size: 12.5vw;
  }

  div.splash-mission {
    position: relative;
    margin-top: 12vw;
    left: 28vw;
    width: 70%;
    font-size: 3.2vw;
  }
}

@media (max-width: 1200px) {
  div.splash-logo {
    position: relative;
    margin-top: 10vw;
    left: 28vw;
    top: 0;
    right: 0;
    width: 20vw;
  }

  img.splash-logo {
    width: 20vw;
    height: 20vw;
  }
}