:root {
    --textPad: 10px;
    --marginPx: 5px;
    --blue: 2088B7;
}

body {
    background-color: LightGray;
    margin: 0 auto;
    max-width: 50em;
}

header {
    background-color: CornflowerBlue;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
}

main {
    padding-top: 10px;
    padding-bottom: 10px;
}

section {
    background-color: CornflowerBlue;
    border: solid;
    border-color: Blue;
    margin-top: 10px;
    padding: 10px;
    border-radius: 20px;
}

footer {
    background-color: White;
    height: 50px;
    margin-top: 10px;
}
