@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
    background-color: rgb(238, 238, 238);
    color: rgb(10, 10, 10);
    font-family: "Roboto", sans-serif;

    /* Center content */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100vw;
    min-height: 100vh;

    /* Remove padding and margin */
    margin: 0;
    padding: 0;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    max-width: 800px;
    flex-grow: 1;
    margin: 0 25px;
}
a {
  text-decoration: none;
  color: rgb(30, 30, 30);
  font-style: italic;
}
a:hover {
  text-decoration: none;
  color: rgb(128, 128, 128);
}
p {
    font-size: 18px;
    text-align: left;
}
h2 {
  margin-top: 50px;
}
#logo {
  max-width: 250px;
}
.comment {
    font-size: 10px;
    color: rgb(100, 100, 100);
}
.copyright {
    font-size: 12px;
    color: gray;
}
table {
  border-collapse: collapse;
}
td, th {
  padding: 10px;
  border: 1px solid gray;
}
th {
  background-color: #cccccc;
}
footer {
  margin-top: 50px;
}
header {
  margin-bottom: 30px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  border-bottom: 1px solid gray;
}
.center-text {
  text-align: center;
}
