@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-image: url("https://images.pexels.com/photos/912364/pexels-photo-912364.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
  color: white;
  font-size: 50px;
  margin: 20px;
}

.inp-cont {
  padding: 20px;
  background-color: rgba(161, 249, 255, 0.345);
  opacity: 0.9;
}

input {
  text-align: center;
  font-size: 20px;
  padding: 8px;
  width: 40vw;
  border-radius: 5px;
  border: none;
  outline: none;
}

.output {
  margin: 10px;
  background-color: rgba(161, 249, 255, 0.345);
  color: white;
  font-size: 20px;
  text-align: center;
  width: 40vw;
  padding: 15px 30px 30px;
  border-radius: 10px;
  display: none;
  flex-direction: column;
}

.city {
  font-size: 20px;
  margin-bottom: 8px;
}

.coord {
  display: flex;
  margin: 5px;
  justify-content: center;
}

.coord div {
  margin: 0 15px;
}

.temp {
  margin: 15px;
  font-size: 50px;
  font-weight: 900;
}

.weather {
  margin: 10px;
}

.oth {
  margin: 10px;
}
