@import url('https://fonts.googleapis.com/css?family=Raleway:400');
@import url('https://fonts.googleapis.com/css?family=Kanit:800');

* {
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 1.06em;
}

html{
  scroll-behavior: smooth;
}

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.7em;
  background-color: #f0f0f0;
  border-bottom: 1px solid #333;
  -webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.2);
  box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.2);
  z-index: 10;
  text-align: center;
}

#nav-menu-button{
  position: absolute;
  top: 1.5em;
  right: 1em;
  display: block;
  cursor: pointer;
}

.bar1, .bar2, .bar3{
  background-color: black;
  width: 27px;
  height: 4px;
  transition: 0.5s;
  margin: 5px 0;
  border: 1px solid black;
  border-radius: 4px;
}

button{
  border: 0;
  padding: 0;
  color: white;
  background: none;
  height: 100%;
  display: inline-block;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance:  none;
  appearance: none;
}

button#logo{
  height: 5em;
}

button#logo img{
  height: inherit;
}

#nav-links{
  position: fixed;
  overflow: scroll;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #282c34;
  z-index: 20;
  padding-top: 0.7em;
  display: none;
}

#nav-links.visible{
  display: block;
}

#nav-links button{
  width: 100%;
  display: block;
  background: none;
  font-size: 1.15em;
  text-transform: uppercase;
  height: 3em;
}

#nav-links button:first-of-type{
  margin-bottom: 1em;
}

#nav-links a{
  display: block;;
  margin-top: 1em;
}

#nav-links button:hover{
  color: #00abeb;
}

img.logo{
  height: 3em;
}

img.fb-link{
  height: 2.2em;
}

a:link, a:visited{
  color: white;
  text-decoration: underline;
  text-decoration-color: #999;
}

section{
  padding: 2em 0.7em;
}

h1, h2{
  margin: 0;
  margin-bottom: 1em;
  text-align: center;
  padding: 0;
}

h1{
  font-family: 'Kanit', sans-serif;
  text-transform: uppercase;
  font-size: 2em;
}

h2{
  font-family: serif;
  font-size: 1.5em;
  font-style: italic;
}

.download-icon{
    display: block;
    height: 4em;
    margin: auto;
    margin-top: 2em;
}

#leader-image, #club-poster{
  text-align: center;
}

#leader-image img{
  margin-top: 60px;
  width: 100%;
}

#club-poster img{
  width: 100%;
  max-width: 700px;
}

#weather, #membership{
   background-color: #42505D;
   color: white;
}

#events{
  background-color: #8EAEBD;
}

#club-contacts{
  background-color: #30415D;
  color: white;
}

footer{
  padding: 2em 0;
  background-color: black;
  color: white;
  font-size: 0.8em;
}

address{
  font-style: normal;
}

iframe{
  width: 100%;
  max-width: 700px;
  height: 450px;
}

@media screen and (min-width: 1350px){
  #nav-links{
    margin-left: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
    background-color: transparent;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  button#secondary-logo{
    display: none;
  }

  button{
    color: black;
  }

  #nav-links a{
    margin: 0;
  }

  #nav-menu-button{
    display: none;
  }

  #about-us{
    margin: auto;
    max-width: 1000px;
    text-align: justify;
  }
}
