@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;400&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*
#F47775 red text cloudy
#F4F7F8 light grey background cloudy
#164A68 blue text rainy
#A3DEF7 blue background rainy
#2A5510 green text sunny
#F7E9B9 yellow background sunny
*/

body {
  height: 100%;
  background-color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 13px;
}

 .main {
    display: flex;
    flex-direction: column;
    width: auto;
    height: 100%;
    padding: 30px;
    max-width: 700px;
    margin: auto;
 }

.container {
    width: 100%;
    font-size: 15px;
    font-weight: 200;
    padding-bottom: 20px;
    padding-top: 20px;
}

.weather-description {
    width: 100%;
    padding: 0 35px;
    font-size: 15px;
    font-weight: 400;
}

.img {
  width: 80px;
  height: 100px;
}

h1 {
    font-size: 20px;
    font-weight: 400;
    padding: 10px 0;
    max-width: 600px;
    line-height: 35px;
}

.week-days {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 2px dotted;
  margin: 20px 0;
  width: 100%;
  max-width: 700px;
  list-style: none;
}

/*tablet and desktop*/
@media (min-width: 667px) {
  .container {
      font-size: 20px;
      padding-bottom: 40px;
  }

  h1 {
      font-size: 40px;
      line-height: 38px;
      padding-bottom: 40px;
  }

  .week-days {
      font-size: 20px;
  }
}
