* {
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
body {
  font-family: "Roboto", sans-serif;
  background-image: url("bg.jpg");
  background-size: cover;
  background-position: top center;
}

.app-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.884)
  );
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 15px 15px 15px;
}

header input {
  width: 100%;
  max-width: 280px;
  padding: 10px 15px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.37);
  border-radius: 16px 5px;
  border-bottom: 3px solid rgba(255, 0, 157, 0.527);
  transition: all 0.5s ease-in-out;
}
header input::placeholder {
  color: darkslategrey;
}
header input:focus-within {
  border-bottom: 3px solid rgb(255, 0, 157);
  background-color: rgba(255, 255, 255, 0.582);
  transition: all 0.3s ease;
}

main {
  flex: 1 1 100%;
  padding: 25px 25px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location .city {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
}

.location .date {
  color: #fff;
  letter-spacing: 1px;
  font-size: 16px;
}
.current .temp {
  color: #fff;
  font-size: 102px;
  font-weight: 800;
  text-shadow: 2px 8px rgba(0, 0, 0, 0.616);
}

.current .weather {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 15px;
  text-shadow: 0px 3px rgba(0, 0, 0, 0.308);
}

.current .hi-low {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-shadow: 0px 4px rgba(0, 0, 0, 0.432);
}

footer {
  display: flex;
  color: rgb(218, 218, 218);
  justify-content: center;
  flex-direction: column;
  margin-bottom: 50px;
  font-size: 14px;
  text-align: center;
}

footer div {
  margin-top: 5px;
}

footer a {
  text-decoration: none;
  color: white;
}
