body {
  background: url("https://images.pexels.com/photos/1433278/pexels-photo-1433278.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2")
    no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  font-family: "Montserrat", sans-serif;
}

ul {
  list-style-type: none;
}

li {
  margin: 0;
  padding: 0;
}

.weather-app {
  padding: 42px 5px 0px 5px;
  color: #fff;
}
.weather-description {
  font-size: 39px;
  font-weight: 600;
  text-transform: capitalize;
}
.city-searched {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}
.current-date {
  font-size: 11px;
  font-weight: 800;
}
.time-now {
  font-size: 11px;
  font-weight: 600;
}
.temperature-now {
  font-size: 50px;
  font-weight: 700;
}

#displayed-temperature {
  font-size: 50px;
  font-weight: 700;
}

.unit-switch {
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  margin-bottom: 10px;
}

#fahreneit-switch {
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  margin-bottom: 10px;
}

#celsius-switch:hover {
  color: rgb(216, 206, 206);
}

#celsius-switch {
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  margin-bottom: 10px;
}

#fahreneit-switch:hover {
  color: rgb(216, 206, 206);
}
.weather-now-icon {
  font-size: 80px;
  font-weight: 700;
}

.weather-additions {
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  margin-top: 15px;

  text-align: right;
}
.additions-icon {
  display: inline;
  font-size: 15px;
  margin-left: 5px;
  text-align: right;
}
.additions-values {
  font-size: 27px;
  font-weight: 400;
  text-align: right;
  padding-bottom: 10px;
}

input {
  margin-left: 5px;
  background: transparent;
  text-align: center;
  border-width: 1px;
  border-style: none none solid none;
  border-color: #fff;
}

input::placeholder {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

input[type="search"] {
  color: #fff;
}

input[type="submit"] {
  background-color: #fff;
  border: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 6px 6px 6px 6px;
}

#time {
  font-weight: 800;
}

.signature {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}

.github-link {
  color: #c8c2c2;
  text-decoration: none;
}

.github-link:hover {
  color: #fff;
}

#forecast {
  padding-left: 0px;
  padding-right: 0px;
}

.forecast-day {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  margin-top: 30px;
}

.forecast-max {
  text-align: center;
  font-weight: 700;
  font-size: 35px;
}

.forecast-min {
  text-align: left;
  font-weight: 300;
  font-size: 15px;
  padding-left: 65px;
}

.forecast-icon {
  text-align: center;
  font-size: 52px;
  padding-bottom: 10px;
}
