body {
    font-family: Arial, Helvetica, sans-serif
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
}
.card {
    background-color: #f2f2f2;
    text-align: center;
    min-width: 300px;
    padding-bottom: 1em;
}

h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.2em;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
li {
    padding: 3px 0;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: #0f3171;
}
