* {
  padding: 0;
  margin: 0;
}

.input {
  font-family: "Montserrat", sans-serif;
  width: 200px;
  height: 45px;
  padding-left: .5rem;
  box-shadow: 0 0 0 1.5px #2b2c37, 0 0 25px -17px #000;
  border: 0;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: text;
  z-index: 0;
}

.input::placeholder {
  color: #bdbecb;
}

.input:hover {
  box-shadow: 0 0 0 2.5px #2f303d, 0px 0px 25px -15px #000;
}

.input:active {
  transform: scale(0.95);
}

.input:focus {
  box-shadow: 0 0 0 2.5px #2f303d;
}

button {
  position: relative;
  display: inline-block;
  margin: 15px;
  padding: 15px 30px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #725AC1;
  background: transparent;
  cursor: pointer;
  transition: ease-out 0.5s;
  border: 2px solid #725AC1;
  border-radius: 10px;
  box-shadow: inset 0 0 0 0 #725AC1;
}

button:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #725AC1;
}

button:active {
  transform: scale(0.9);
}

#form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body {
  background-color: whitesmoke;
}

.main {
  margin-top: 100px;
  margin-bottom: 75px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lower-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 34px;
  width: 425px;
  height: 425px;
  gap: 10px;
  border: 3px solid white;
  border-radius: 14px;
  background-color: white;
  box-shadow: -15px 22px 44px 6px rgba(82, 82, 82, 0.7);
  -webkit-box-shadow: -15px 22px 44px 6px rgba(82, 82, 82, 0.7);
  -moz-box-shadow: -15px 22px 44px 6px rgba(82, 82, 82, 0.7);
}

.weather-data {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.para {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 44px;
  font-weight: 800;
  color: cornflowerblue;
}

#show-error {
  color: grey;
  font-size: 34px;
  font-weight: 800;
}

#show-city,
#show-temprature,
#show-weather-type,
#show-feels,
#show-humidity,
#show-pressure {
  color: gray;
  font-size: 26px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .lower-main {
    width: 350px;
    padding: 16px 24px;
    height: 375px;
  }

  #show-city,
  #show-temprature,
  #show-weather-type,
  #show-feels,
  #show-humidity,
  #show-pressure {
    font-size: 22px;
  }

  .para {
    font-size: 28px;
  }

  button {
    margin: 12px;
    padding: 12px 24px;
  }

  .input {
    width: 175px;
  }
}

@media screen and (max-width: 468px) {
  .lower-main {
    width: 260px;
    padding: 12px 18px;
    height: 440px;
  }

  #show-city,
  #show-temprature,
  #show-weather-type,
  #show-feels,
  #show-humidity,
  #show-pressure {
    font-size: 20px;
  }

  .para {
    font-size: 30px;
    margin-bottom: 16px;
  }

  #form {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
  }

  button {
    width: 150px;
    margin: 10px;
    padding: 10px 16px;
    font-size: 16px;
  }
}