html {
  box-sizing: border-box;
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;

  background-color: rgba(12, 14, 14, 0.171);
  color: rgb(25, 21, 21);
}

h3 {
  font-size: 2.5em;
  padding-left: 1.4em;
}

label,
input,
button {
  font-size: 1.2em;
  margin-bottom: 1em;
}

img {
  position: absolute;
  top: 5.5em;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  display: block;
}
ul {
  position: absolute;
  bottom: 3.5em;
  left: 1em;
  text-align: center;
  line-height: 2;
  font-size: x-large;
  font-weight: 800;
}

.title {
  text-align: center;
}

.weatherContainer {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  row-gap: 3em;
}

.holder {
  position: relative;
  background: rgb(5, 49, 50);
  background-image: linear-gradient(
    to bottom right,
    rgb(85, 208, 235),
    rgb(207, 237, 74)
  );

  border-radius: 1em;

  height: 550px;
  margin-top: 2em;
}

.holder h2 {
  text-align: center;
}

.holder ul {
  list-style: none;
}

@media screen and (min-width: 350px) {
  img {
    width: 80%;
  }
}

@media screen and (min-width: 400px) {
  .holder {
    width: 450px;
    margin: auto;
  }
}

@media screen and (min-width: 850px) {
  h1 {
    font-size: 3em;
  }
  .weatherContainer {
    display: flex;
    flex-wrap: wrap;
  }
  .title {
    margin-bottom: 3em;
  }
}
footer {
  text-align: center;
  margin-top: auto;
}
