/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*/
body {
  font-family: "Poppins", sans-serif;
  background-image: url("weatherimg.jpg");
  background-size: cover;
  background-position: top center;
  color: white;
}

.app-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.6)
  );
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 15px 15px;
}

header .search-box {
  width: 100%;
  max-width: 280px;
  padding: 10px 15px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 16px 0 16px 0;
  border-bottom: 3px solid #df8e00;
  color: #313131;
  font-size: 20px;
  font-weight: 300px;
  transition: 0.2s ease-out;
}

header .search-box:focus {
  background-color: rgba(255, 255, 255, 0.9);
}

main {
  flex: 1 1 100%;
  padding: 25px 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location .city {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
}

.location .date {
  font-size: 16px;
}

.current .temp {
  font-size: 102px;
  font-weight: 900;
  margin: 10px 0;
  text-shadow: 2px 10px rgba(0, 0, 0, 0.6);
}

img {
  margin-top: 20px;
}

.current #units {
  font-weight: 300;
  font-size: 102px;
  margin: 10px 0;
  text-shadow: 2px 10px rgba(0, 0, 0, 0.6);
}

.current .weather {
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 15px;

  text-shadow: 0px 3px rgba(0, 0, 0, 0.4);
}

.current .weather::first-letter {
  text-transform: capitalize;
}

.current-button {
  background-color: #df8e00;
  border: none;
}

.current-button:hover {
  color: black;
  background: white;
}

small {
  margin: 0 auto;
  font-size: 20px;
}
.weather-units {
  margin-bottom: 15px;
}
#units a:hover {
  text-decoration: none;
  cursor: default;
}

.col-2 {
  margin: 35px;
}
