* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lora", serif;
}

.container {
  height: 100vh;
  width: 100vw;

  background-image: url("image/we1.jpg");
  background-position: center;
  overflow: hidden;
  position: relative;
}
.overflow {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(133, 186, 212, 0.5);
}
.box {
  background-color: rgba(193, 205, 211, 0.7);
  padding: 40px;
  width: auto;
  box-shadow: white 0px 5px 15px;
  border-radius: 5px;
  margin: 0px 10px;
}
img {
  margin-left: 30%;
  height: 100px;
  width: 100px;
}
.weather {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 1.5rem;
  border-top: 1px solid black;
}
#location {
  font-size: 3rem;
  font-weight: 800;
  font-style: sans-serif;
}
.desc {
  font-size: 1.25rem;
  text-transform: capitalize;
}

.circle {
  background-color: black;
  border-radius: 50px;
  height: 20px;
  width: 20px;
  margin: 0 15px;
}
