body {
  color: #515151;
  margin: auto 0;
  font-family: Arial, Helvetica, sans-serif;
}

.day {
   background: #138ed6a1;
   max-width: 100%;
   height: auto;
   background-size: cover;
}

.night {
    background: #0d3146a1;
    max-width: 100%;
    height: 1000px;
    background-size: cover;
}

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

.weather-app {
    width: 90%;
    max-width: 300px;
    padding: 10px 10px;
    border-radius: 2px;
    text-align: center;
    background-color: rgba(236, 232, 232, 0.24);
    color: #f1f1f1;
    margin-top: 15%;
}

.temp {
    font-size: 50px;
}

.city {
    margin-bottom: 10px;
    font-size: 30px;
}

.sunrise-sunset {
    margin-top: 0px;
    margin-bottom: 20px;
}
  
.sunrise, .sunset {
    padding: 20px;
}

.weekdays {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
}

/*** MEDIA QUERIES ***/
  @media (min-width: 768px){
    .container {
        height: fit-content;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
  }
  
  @media (min-width:1024px){
    .weather-app {
        width: 100%;
        max-width: 600px;
    }

    .main-info{
        display: flex;
        align-items: center;
        height: fit-content;
        justify-content: center;
        margin-top: 20px;
    }

    .temp {
        display: flex;
        font-size: 60px;
    }

    .city {
        margin-top: -180px;
        font-size: 50px;
        }
    
    .date {
        font-size: 20px;
    }

    .weekdays {
        font-size: 18px;
    }
  }