/* styles.css */

html {
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: #f7f7f7;
    font-size: 1.15rem;
    line-height: 1.5;
    display: grid;
    grid-template-columns: 1fr min(45rem, 90%) 1fr;
    margin: 0;
    min-height: 100vh;
    grid-template-rows: 1fr auto;
}

body > * {
    grid-column: 2;
}

body > footer {
    padding: 2rem 1rem 1.5rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid #ccc;
    grid-row: 2;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

main {
    padding: 20px;
    flex-grow: 1;
    grid-row: 1;
}

footer a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
    color: #000;
}

.front {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}