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

/* Menu */
.bg-dark {
  background-color: #3C5896 !important;
}

.navbar {
  position: fixed;
  width: 100%;
  font-size: 15px;
}

.logo, .navbar-brand {
  width: 3em;
  height: auto;
}

.nav-item {
  display: flex;
  align-items: center;
}

body {
  background-color: #EDEDED;
}

form {
  padding-top: auto;
  padding-bottom: auto;
  vertical-align: bottom;
  margin-bottom: 0px;
}

label, input {

  vertical-align: middle;
}

.navbar-collapse.collapse {
  display: block!important;
}

.navbar-nav>li, .navbar-nav {
  float: left !important;
}

.navbar-nav.navbar-right:last-child {
  margin-right: -15px !important;
}

.navbar-right {
  float: right!important;
}

.menu-text {
  color: white;
}

#weatherInput {
  background-color: #EDEDED;
}

.page {
  padding-top: 90px;
  text-align: center;
  min-height: calc(100vh - 5vh); /*The second term is the height of the footer. The min-height makes it so every page fills up the page. Even if the page is blank.*/
}

#weatherSubmit {
  padding-left: 2px;
  padding-right: 2px;
}

.current-weather {
  display: flex;
  justify-content: center;
  align-items: center;
}

.the-weather {
  font-size: 15px;
  margin-bottom: 0px;
}

.current-temp {
  float: left;
  font-size: 60px;
}

.current-description {
  padding-top: 30px;
  padding-left: 20px;
}

.five-day-forecast {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.day-card {
  width: 100%;
  border: 4px solid black;
  margin: 10px;
  background-color: lightblue;
  border-radius: 8px;
}

.day {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: lightblue;
  border-radius: 8px;
/* border: 1px solid blue;*/
}

.day-date {
  width: 100%;
  color: white;
}

.day-date-container {
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: #3C5896;
}

h2 {
  margin-bottom: 0px;
  padding-bottom: none;
}

.hour {
  width: 50%;
  height: auto;
  border-top: 2px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: none;
  padding: 10px;
  text-align: left;
  /*border: 1px solid red;*/
}

.time-image-container {
  display: flex;
  justify-content: space-around;
}

.hour-odd {
  width: 100%
}

.hour-odd-time-image {
  width: 50%;
}

.footer {
  min-height: 5vh;
  background-color: #3C5896;
  color: #FFFFFF;
  text-align: right;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 1vh;
}

.footer-link {
  color: lightblue;
}

.footer-link:hover {
  color: #EDEDED;
}


/* Mobile Styles */
@media only screen and (max-width: 454px) {



}

/* Tablet Styles */
@media only screen and (min-width: 455px) and (max-width: 960px) {


}

/* Larger Tablet Styles */
@media only screen and (min-width: 775px) and (max-width: 960px) {
  .day-card {
    width: 45%;
  }

  .hour {
    min-height: 275px;
  }
}

/* Small Desktop Styles */
@media only screen and (min-width: 961px) {


  .day-card {
    width: 15%;
    margin: 5px;
  }

  .day-date-container {
      min-height: 120px;
  }

  .hour {
    width: 100%;
    min-height: 280px;
    text-align: left;
  }

  .current-temp {
    font-size: 100px;
  }

  .hour-odd-time-image {
    width: 100%;
  }



}

/* Large Desktop Styles */
@media only screen and (min-width: 1300px) {
  .hour {
    min-height: 260px;
  }

}
