body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header img {
    height: 50px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}
select {
    width: 200px; /* Adjust the width as needed */
    height: 40px; /* Adjust the height as needed */
    font-size: 16px; /* Adjust the font size as needed */
}

/* Optional: Style for the option elements within the select */
select option {
    font-size: 14px; /* Adjust the font size of options as needed */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}
p{
    font-size:1.5rem;
}

.footer {
    text-align: center;
    margin-top: 20px;
}

.footer a {
    text-decoration: none;
    color: blue;
}

.footer a:hover {
    color: red;
}
