html {
    box-sizing: border-box;
    font-family: sans-serif;
}

*,
*::before,
*::after {
    box-sizing: inherit
}

body {
    margin: 0;
    background: #676767;
}

.wrapper {
    max-width: 1024px;
    margin: 0 auto 20px;
    padding: 0 20px 20px;
    display: grid;
    gap: 20px;
    background: white;
}

#data-load {
    margin: 0 auto;
}

#data-load>h2 {
    text-align: center;
    font-size: xxx-large;
}

section {
    display: flex;
}

.weather {
    margin-right: 50px;
}

.weather>p {
    font-weight: bolder;
    text-align: center;
}

.weather>img {
    width: 216px;
}

#map {
    height: 300px;
}