:root {
  font-size: 0.8rem;
}

* {
  margin: 0 auto;
}

body {
  background-color: #00243D;
  font-family: 'Exo 2', sans-serif;
}

header {
  background-color: black;
  height: 10vh;
  width: 100%;
}

h1 {
  color: #00A938;
  font-family: 'Audiowide', cursive;
  font-size: 3rem;
}

header p {
  color: #717171;
  font-size: 1.2rem;
}

#header-style {
  color: white;
}

h1, p {
  margin: auto;
  padding-top: .3rem;
  text-align: center;
}

.flex-select {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 25%;
  width: 70%;
}

.btn,
.btn-large,
.btn-flat {
  padding: 0 1rem;
}

main a.modal-trigger {
  /*align-self: center;*/
  background-color: gray;
  border-radius: 2rem;
  margin-top: 2rem;
  margin-left: 1rem !important;
  z-index: 0 !important;
}

main a.modal-trigger:hover {
  background-color: #00A938;
}

#modal1 {
  background-color: #00243D;
  max-width: 80%;
}

#modal1 h4,
#modal1 p {
  color: white;
  font-family: 'Audiowide', cursive;
  text-align: center;
}

ul.dropdown-content {
  background-color: gray;
}

li {
  padding: .1rem !important;
}

.weather-flex {
  color: #717171;
  display: flex;
  text-align: center;
  justify-content: space-between;
}

.weather {
  max-height: 25vh;
  width: 40%;
}

.weather h2 {
  color: white;
  font-size: 2.5rem;
  margin: 0;
  text-align: center;
}

.weather h3 {
  font-size: 1.4rem;
  margin: .6rem .2rem;
  border-bottom: solid #00A938 1px;
}

/*MATERIALIZE OVERRIDES HERE*/

.input-field {
  align-self: center;
  background-color: gray;
  display: inline-block;
  margin: 2rem 0 0 10%;
  padding: 0 1rem;
  width: 50%;
}

.select-wrapper input.select-dropdown {
  border-bottom: none !important;
  margin: 0;
}

.slider {
  width: 100%;
}

.slider .slides {
  background-color: transparent;
  height: 400px;
  margin: 1rem 0 0 0;
}

.slider .slides li img {
  max-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.slider .indicators .indicator-item {
  background-color: gray;
  padding: 2rem 0;
  height: 10px;
  width: 10px;
}

.indicator-item:active {
  color: pink;
  background-color: pink !important;
}

ul.dropdown-content.select-dropdown li span {
  background-color: gray;
  color: #2A2A2A;
}



/*==========  Non-Mobile First Media Queries ==========*/

  /* Large Devices, Wide Screens */
  @media only screen and (max-width : 1200px) {

  }

  /* Medium Devices, Desktops */
  @media only screen and (max-width : 992px) {
      :root {
        /* font-size: 1.0rem; */
      }

      #modal1 {
        width: 60%;
      }
    }

    /* Small Devices, Tablets */
  @media only screen and (max-width : 768px) {

      :root {
        font-size: .7rem;
      }

      .weather {
        width: 90%;
      }
    }

    /* Extra Small Devices, Phones */
  @media only screen and (max-width : 480px) {

      :root {
         /* font-size: 0.8rem; */
       }

       body {
         max-height: 100vh;
         width: 100vw;
       }

       header {
         height: 8rem;
       }

       header p {
         font-size: 14px;
       }

       main a.modal-trigger {
         margin-top: 1rem;
       }

       #modal1 {
         font-size: 1.5rem;
         width: 80%;
       }

       .flex-select {
         margin: 0 5%;
         width: 90%;
       }

       .input-field {
         margin-bottom: 1rem;
         width: 80%;
       }

       .weather-flex,
       .weather-flex h2 {
         width: 100%;
       }

       .dropdown-content li>a,
       .dropdown-content li>span,
       .select-wrapper input.select-dropdown {
         font-size: 22px;
       }
    }

    /* Custom, iPhone Retina */
  @media only screen and (max-width : 380px) {
      :root {
        font-size: .7rem;
      }

      .select-wrapper input.select-dropdown {
        font-size: 18px;
      }
    }
