body {
    background-color: #f9fdff;
    display: flex;
    align-items: center;
    justify-content: center;

}

#weather {
    background-color: #d8e9ef;
    display: flex;
    flex-direction: column;
    max-width: fit-content;
    margin-top: 10px;
    border-color: #d8e9ef;
    border-width: 20px;
    border-style: solid;
    border-radius: 10px;

}

#currentWeather {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    align-items: center;
}

#moreWeather {
    display: flex;
    justify-content: center;
}

div.more {
    background-color: #ffffff9a;
    border: 2.5px #ffffff9a;
    border-radius: 10px;
    padding-left: 10px;
    width: 50%;
    margin: 5px;
}

img {
    max-width: 150px;
    padding: 15px;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    margin-left: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

h2 {
    font-size: 20px;
    font-weight: normal;
    margin-left: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

p {
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

p#temp {
    font-size: 36px;
    font-weight: bold;
    margin-left: 20px;
}

p#appTemp {
    font-size: 20px;
    margin-left: 20px;
}

p.more {
    font-size: 16px;
}