* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1{
    text-align: center;
}
body, html {
    /* height: 100%;/ */
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

header, footer {
    background-color: #f8f9fa; /* Light grey background */
    padding: 1rem;
    text-align: center;
}

main {
    flex: 1; /* This makes the main content take up all available space */
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f0f0f0; */
}

#summaries {
    /* Adjust this size as necessary */
    width: 80%;
    max-width: 800px;
    margin: auto;
    text-align: left;
}
