@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
:root {
  --color-text: #132f4e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-image: url("images/main.jpg");
  height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.app-main {
  width: 50vh;
  margin: 100px auto;
  padding: 20px;
  text-align: center;
}

@media (max-width: 400px) {
  .app-main {
    width: 45vh;
  }
}

.app-main > * {
  margin-bottom: 20px;
}

.input-box {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(to bottom left, #9bffff8e 0%, #a6ffa68e 100%);
  box-shadow: 8px 5px 55px -19px rgba(71, 71, 71, 0.986);
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 1.2rem;
  height: 50px;
  border-radius: 25px;
  padding: 0 10px;
  text-align: center;
}

.input-box:focus {
  background-color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(to bottom left, #e6ffff8e 0%, #dbffdb8e 100%);
}
.anim {
  opacity: 0.9;
  margin-top: 1rem;
  height: 6rem;
  width: 6.5rem;
}
.weather-body {
  display: none;
  box-shadow: 8px 5px 40px -20px rgba(71, 71, 71, 0.986);
  color: var(--color-text);
  padding: 20px;
  line-height: 2rem;
  border-radius: 25px;
  background-color: rgba(157, 230, 240, 0.6);
  background: linear-gradient(to bottom right, #9bffff8e 0%, #a6ffa69d 100%);
  height: 50vh;
}

.location-details {
  font-weight: 700;
}

.weather-status {
  padding: 20px;
}

.temp {
  font-size: 50pt;
  font-weight: 700;
  margin: 20px 0;
  text-shadow: 3px 5px 6px rgba(0, 0, 0, 0.3);
}

.min-max,
.weather {
  font-size: 12pt;
  font-weight: 600;
}
