body {
    max-width: 650px;
    background-color: #093091;
    margin: auto;
}


/* @media (min-width: 980px) {
    body {
        display: flex;
        gap: 24px;
        justify-content: center;
        background-color: #c5dce0;
    }
} */

header {
    background: #d6ebf0;
    font-weight: bold;
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

header>div {
    max-width: 650px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
}

main {
    line-height: 1.8;
    margin: 96px 0 24px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

aside {
    min-width: 240px;
}

aside h3 {
    color: #fff;
}

aside ul {
    padding: 24px;
    background-color: #fff;
    margin-top: 24px;
    list-style: none;
}

aside ul li {
    margin-bottom: 12px;
}

aside ul li:last-child {
    margin-bottom: 0;
}

article {
    padding: 24px 48px;
    border-radius: 6px;
    background-color: #fff;
}

figure {
    margin: auto 0;
}

img {
    max-width: 100%;
}