* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(bg_img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100dvh;
}

.weatherForm {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
.cityInput {
  padding: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  border: 1px solid #06202b44;
  border-radius: 10px;
  margin: 10px;
  width: 300px;
  border: 1px solid #06202b;
  background-color: rgba(6, 6, 6, 0.7);
  color: #dcdcdc;
  outline: none;
}

.displayContainer {
  background-color: rgba(6, 6, 6, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid #06202b44;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  padding: 60px 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.468);
  max-width: 300px;
  text-align: center;
}
button[type="submit"] {
  padding: 10px 10px;
  font-weight: bold;
  font-size: 1.2rem;
  border: 1px solid #06202b;
  border-radius: 100px;
  background-color: rgba(6, 6, 6, 0.7);
  color: #dcdcdcef;
  transition: scale 0.1s ease;
}

button:hover {
  background-color: rgba(6, 6, 6, 0.8);
  scale: 1.05;
  color: #dcdcdcef;
}
.cityDisplay {
  color: #fdca40;
  margin-top: -30px;
  font-size: 2.5rem;
}

.tempDisplay {
  margin-top: 30px;
  font-size: 40px;
  font-weight: bold;
  color: #dcdcdc;
}

.humDisplay {
  font-size: large;
  font-weight: bold;
  color: #dcdcdc;
}

.info {
  font-size: large;
  font-weight: bold;
  color: rgba(255, 99, 71, 0.8);
}
.emoji {
  margin: 0;
  font-size: 5rem;
}
.errorDisplay {
  font-size: large;
  font-weight: bold;
  color: orangered;
}
.initial {
  /* color: #fdca40; */
  color: #dcdcdc;
  font-size: large;
  font-weight: bold;
}
.section1 {
  width: 100%;
}
.section2 {
  margin: 10px;
  width: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.section3 {
  width: 100%;
  display: grid;
  justify-items: center;
  font-size: large;
  color: #dcdcdc;
}
.section3a {
  text-align: left;
}

.windDisplay::before {
  content: "༄ ";
}

.sunriseDisplay::before {
  content: "𖤓 ";
}
.sunsetDisplay {
  margin-top: 22px;
}
.sunsetDisplay::before {
  content: "☼ ";
}
