@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: Montserrat;
    background-color:lightblue;
    padding: 20px;
}

/* THIS IS THE BIG TEXT ABOUT THE WEATHER */

h1 {
    font-family: Montserrat;
    font-size: 12px;
    color: black;
    margin-bottom: 0px;

}

p {
    font-family: Montserrat;
    font-weight: lighter;
    font-size: 12px;
    color: black;
    padding-bottom: 15px
}

/* THIS IS THE DOTTED LINE BETWEEN THE WEEKDAYS */

hr {
    font-family: Montserrat;
    border: none;
    border-top: 1px dotted black;
    width: 100%;
}

h6 {
    font-family: Montserrat;
    font-size: 8px;
    color: black;
    margin-top: 30px;
}

.weekdays {
    font-family: Montserrat;
    font-size: 5px;
    color: black;
    margin: 10px 0px 50px 0px;
}

.left {
    width: 50%;
    float: left;
    margin-bottom: 5px;
}

.right {
    width: 50%;
    float: right;
    text-align: right;
    margin-bottom: 5px;
}

main {
    margin: 0 auto;
    width: 80%;
    max-width: 400px;
    height: 510px;
    border-radius: 30px;
    background: #fff;
    padding: 20px 24px;
    padding-top: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  h3 {
    font-family: Montserrat;
    font-weight: lighter;
    font-size: 12px;
    color: black;

  }
