* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    /* height: 100%;/ */
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
h1{
    text-align: center;
}
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; */
}

#data-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  h2 {
    text-align: center;
  }

  .centered-list {
    list-style-type: disc;
    padding-left: 0;
    text-align: left;
    margin: 0;
    padding: 0;
  }

  .centered-list li {
    margin: 5px 0;
  }