* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
body {
  background-color: rgb(245, 245, 245);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.appContainer {
  /* width: 360px; */
  border: 1.5px solid #c3cdd9;
  border-radius: 12px;
  margin: 40px 15px;
  overflow: hidden;
  background-color: #fff;
  position: sticky;
  top: 0;

  & > h1 {
    background-color: #5ca4db;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 1.7em;
    letter-spacing: 0.2px;
  }

  main {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
  }

  main form {
    display: flex;
    justify-content: center;

    input {
      min-width: 75%;
      padding: 5px 0px 4px 12px;
      flex-basis: 50%;
      border: 1px solid #d6dbe2;
      font-size: 1.08em;
      outline: none;
      border-radius: 15px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
    button {
      flex-basis: 50%;
      background-color: #5ca4db;
      color: #fff;
      font-size: 1.2em;
      padding: 10px 15px;
      border: none;
      border-top-right-radius: 15px;
      border-bottom-right-radius: 15px;
      cursor: pointer;
    }
  }
  #display {
    width: 100%;
    margin: 20px auto 0;
    padding: 20px 5px;
    border-radius: 15px;
    border: 1px solid #d6dbe2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    background-color: rgba(225, 226, 233, 0.4);

    #tempAndCity {
      display: flex;
      justify-content: center;
      gap: 15px;
      align-items: center;
      text-align: left;

      & img {
        width: 35%;
      }

      & h1 {
        font-size: 3em;
        letter-spacing: -1.4px;
      }

      & h3 {
        color: #2b2f36;
        font-size: 1.6em;
      }
    }

    #others {
      display: flex;
      justify-content: space-around;
      font-size: 1.3em;
      text-align: left;

      & h3 {
        font-weight: 500;
        color: #6f7780;
      }
      & p {
        color: #202b38;
        font-weight: 600;
      }
    }

    & h1 {
      text-align: center;
      text-transform: capitalize;
    }
  }
}
