body {
  margin: 0 auto;
  font-family: 'Lakki Reddy', cursive;
  font-size: 16px;
  color: #333;
}

.image-container {
  display: flex;
  justify-content: center;
  height: 600px;
}

#image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buttons {
  display: flex;
  justify-content: center;
}

button {
  margin: 10px;
  padding-top: 10px;
  border-radius: 5px;
  background-color: lightblue;
  color: black;
  font-weight: bold;
}

.info {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

.icon-div img {
  width: 100%;
}

.icon-box {
  width: 60%;
  height: 70%;
}

.weather-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

.weather-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  margin-bottom: 70px;
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  padding-top: 2%;
}

.bcn-flag {
  width: 25%;
  margin-top: 25px;
  margin-bottom: 60px;
}

.credits-footer {
  display: flex;
  justify-content: center;
  width: 80%;
  margin-top: 20px;
  margin-right: 20%;
  margin-left: 15%;
  color: rgb(59, 58, 58);
  font-style: italic;
  font-size: smaller;
}


@media only screen and (min-width: 1001px) {

  .info {
    font-size: 25px;
  }

  .weather-box {
    width: 50%;
  }

  .bcn-flag {
    width: 50%;
    margin-top: 25px;
    margin-bottom: 40px;
  }

}


@media only screen and (max-width: 1000px) and (min-width: 605px) {
  .info {
    font-size: 20px;
  }

  .temperature {
    width: 65%;
  }

  .description {
    width: 80%;
  }

  .bcn-flag {
    width: 50%;
    margin-top: 25px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .info {
    font-size: 17px;
  }

  .image-container {
    display: flex;
    justify-content: center;
    height: 400px;
  }
  
  .icon-box {
    width: 80%;
    height: 80%;
  }


  .temperature {
    width: 65%;
  }

  .description {
    width: 80%;
  }

  .timer-box {
    width: 30%;
  }

  .bcn-flag {
    width: 80%;
    margin-right: 30px;
  }
}