* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh; /*Full screen*/
  font-family: "montserrat", sans-serif;
  background-size: cover;
  background-position: top center;
  background-image: url("bg.jpg");
  backdrop-filter: brightness(55%);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /*background: linear-gradient(rgb(47, 150, 163), rgb(48, 62, 143));*/
  color: white;
}

.location,
.temperature {
  height: 30vh;
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.temperature {
  flex-direction: column;
}

.degree-section {
  display: flex;
  align-items: center;
}

.degree-section span {
  margin: 10px;
  font-size: 30px;
}

.degree-section h2 {
  font-size: 40px;
}

.date {
  color: #fff;
  font-size: 16px;
}

footer {
  color: #fff;
  position: fixed;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
