body {
  color: rgb(191, 193, 200);
  font-family: Roboto, "Open Sans", sans-serif;
  background-color: rgb(30, 32, 43);
  font-weight: 300;
  font-size: 14px;
}
:root {
  --main-color: rgb(0, 154, 216);
}
/************************** Media Style ************************/

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/************************** NavBar Style ************************/
.navbar-brand img {
  margin-right: 10px;
}

.logo-type h1 {
  font-size: 16px;
  margin-bottom: 5px !important;
}
.logo-type p {
  font-size: 10px;
  color: rgb(191, 193, 200);
}
.navbar {
  padding: 40px 0;
}
#navbarSupportedContent .nav-link {
  font-weight: 600;
  border-radius: 30px;
  padding: 5px 25px;
  transition: all 0.3s;
  color: white;
  margin-left: 10px;
  border: 2px solid transparent;
  cursor: pointer;
}
#navbarSupportedContent .nav-link:hover {
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
#navbarSupportedContent .nav-link[aria-current] {
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

/************************** Content Style ************************/

.hero {
  background-image: url(../img/banner.png);
  background-size: cover;
  padding: 70px 0;
  min-height: 350px;
}
.find-location {
  margin-bottom: 70px;
}
input {
  border-radius: 30px;
}
input:focus {
  outline: none;
}
.hero p {
  color: red;
  font-size: 20px;
}
.search {
  padding: 20px 50px 20px 20px;
  background-color: rgb(30, 32, 43);
}
#submit,
#subscribe {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  background: var(--main-color);
  padding: 0px 40px;
}

.forecast-container {
  background-color: rgb(50, 53, 68);
  border-radius: 10px;
  margin-top: -150px;
  margin-bottom: 50px;
}

.forecast-header {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.forecast-content {
  padding: 30px 20px;
}
.forecast-content .location {
  font-size: 1.28571em;
  font-weight: 400;
}
.today-forecast .degree .num {
  font-size: 5.42857rem;
  margin-right: 30px;
  font-weight: 700;
}
.forecast-content .custom {
  color: var(--main-color);
  margin: 20px 0;
}
.forecast-content span {
  margin-right: 20px;
}

.tomorrow-forecast {
  background-color: rgb(38, 41, 54);
}
.forecast-content {
  padding: 50px 20px 10px;
}
.degree {
  font-size: 1.71429em;
  font-weight: 700;
}
small {
  font-size: 1.14286em;
}

/**************************  Footer Style ************************/

.site-footer {
  background-color: #262936;
  padding: 50px 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  background: #1e202b;
  color: #009ad8;
  text-align: center;
  line-height: 2;
  transition: 0.3s ease;
  font-size: 1.4285714286em;
}
.social-links a:hover {
  background: #009ad8;
  color: white;
}
