html {
    background-color: #7dbcf1;
    background-image: url("../images/clouds.jpg");
    background-size: 250px;
    font-size: 20px;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0px;
}

main {
    width: 100%;
    max-width: 28em;
}

header>h1 {
    text-align: center;
    text-transform: uppercase;
}

section {
    margin: 2% 2%;
    border: 2px outset gold; /*consider 4px ridge with a h2,dt,dd margin 0px for a very physical table*/
}

h2,
dt,
dd {
    margin: 1px;
    border: 2px inset gold;
}

h2 {
    padding: 3px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

h2>span>img {
    height: 1.2em;
}

h2>span {
    display: inline-flex;
    align-items: center;
    gap: 0.1em;
    margin: 0.1em;
}

dl {
    display: grid;
    grid-template-columns: 1fr 4fr;
    margin: 0px;
}

dt,
dd {
    padding: 0.2em;
}