body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-family: 'Arial', sans-serif;
    background-color: #F7E9B9;
    color: #2A5510;
    margin: 0;
    padding: 40px;
}

.current-weather {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 21px;
    padding-bottom: 40px;
}

p {
    font-size: 21px;
    margin: 4px 0;
}

#image {
    display: block;
    margin: 30px auto;
}

h1 {
    margin-top: 20px;
    text-align: left;
    font-size: 37px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #2A5510;
}

#location {
    margin-top: 20px;
    text-align: left;
    font-size: 37px;
    color: #2A5510;
    padding-left: 5px;

}

.forecast-container p {
    display: flex;
    font-size: 21px;
    padding: 10px;
    border-bottom: 1px dotted #2e523a;
    /* Dotted line bottom */
    color: #2A5510;
    line-height: 36px;
}

/* Media queries */
/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    body {
        padding: 50px;
    }
}

/* Desktop */
@media only screen and (min-width: 1024px) and (max-width: 1600px) {
    body {
        /* margin: 0 auto; */
        padding: 60px;
    }
}