html {
    max-width: 1920px;
    position: relative;
}

body {
    font-family: Roboto;
    background: url(gfx/background.jpg);
    min-height: 100%;
}

/* Style the header */
.header {
    font-family: Roboto;
    background-color: #f1f1f1;
    color: rgb(0, 0, 0);
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

section {
    height: 200px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

div.column {
    color: rgb(0, 0, 0);
    background: rgba(82, 247, 247, 0.651);
    padding: 12px;
    width: 300px;
    /* height: 300px; */
    text-align: center;
}

/* centering with CSS Grid */
.column-center {
    display: grid;
    justify-content: center;
    gap: 15px;
    align-content: center;
    text-align: center;
    grid-auto-flow: column;
    height: max-content;
}


/* Style the footer */
.footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    align-self: flex-end;
}

span {
    color: rgb(0, 0, 0);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

p {
    color: rgb(0, 0, 0);
}

@media(max-width: 1000px) {
    .column-center {
        grid-auto-flow: row dense;
    }
}

a {
    color: black;
}
