* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  background-image: url(./main.jpg);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  font-family: Arial, Helvetica, sans-serif;
  background-size: cover;
  height: 100vw;
}
.app-main {
  max-width: fit-content;
  margin: 100px auto;
  background-color: rgba(240, 248, 255, 0.6);
  padding: 20px;
  text-align: center;
}
.input-box {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  outline: none;
  color: #582233;
  font-size: 1.2rem;
  height: 50px;
  border-radius: 5px;
  padding: 0 10px;
  text-align: center;
}
.weather-body {
  display: none;
  color: #582233;
  padding: 20px;
  line-height: 2rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  height: fit-content;
  width: fit-content;
  margin-top: 10px;
}
.location-details {
  font-weight: bold;
}
.weather-status {
  padding: 20px;
}
.temp {
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  text-shadow: 2px 4px rgba(0, 0, 0, 0.3);
}
.min-max,
.weather {
  font-size: 12pt;
  font-weight: 600;
}
@media screen and (max-width: 680px) {
  .app-main {
    max-width: 100%;
    max-width: fit-content;
  }
  body{
    height: 100vw;
  }
  .weather-body {
    display: none;
    max-height: fit-content;
    padding-left: 50px;
    text-align: center;
    max-width: 100%;
  }
  .temp,
  .min-max,
  .weather,
  .city,
  .date {
    font-size: large;
  }
  .temp {

    text-shadow: none;
  }
}
