/* Universal link style */
a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Noto Sans Mono', monospace;
    background-color: #2e2e2e; /* Dark mode background */
    color: white;
    margin: 0;
    padding: 20px;
}

.header {
    text-align: center;
}

.header h1 {
    margin-bottom: 10px;
}

.header p {
    margin-top: 0;
}

h3 {
    text-align: center;
}

.footnote {
    margin-top: 100px;
    text-align: center;
}

.footnote img {
    width: 50%;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    display: flex;
    align-items: center;
    background-color: #3c3c3c; /* Card background */
    border-radius: 10px;
    padding: 15px;
    transition: background-color 0.3s;
    width: 50%;
    align-self: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.card:hover {
    background-color: #4a4a4a; /* Brighter card on hover */
}

.icon {
    width: 50px; /* Set the width of the icon */
    height: 50px; /* Set the height of the icon */
    margin-right: 15px;
}

.text h3 {
    margin: 0;
    font-size: 1.5em;
    text-align: left;
}

.text p {
    margin: 5px 0 0;
    text-align: left;
}

/* Light mode styles */
@media (prefers-color-scheme: light) {
    body {
        background-color: #f0f0f0; /* Light mode background */
        color: black;
    }

    .card {
        background-color: #ffffff; /* Card background in light mode */
    }

    .card:hover {
        background-color: #e0e0e0; /* Brighter card on hover in light mode */
    }
}

.coming-soon {
    text-align: center;
    font-style: italic;
}