/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    background-color: #0072bb; /* Dark blue */
    color: white;
    text-align: center;
    padding: 0.3em 0;
}

header {
    flex-shrink: 0;
    font-size: 1em; /* Reduced font size */
}

footer {
    margin-top: auto;
    flex-shrink: 0;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    background-color: white;
}

h1 {
    font-size: 1.7em;
}

h2 {
    font-weight: normal;
    font-size: 1.3em;
}

.button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background-color: #1e82e4; /* Medium blue */
    color: white;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 1em 2em;
    margin: 1em;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s;
    width: 250px;
}

.btn:hover {
    background-color: #0072bb; /* Darker blue */
    /* text-decoration: underline; */
}

.link-container {
    margin-top: 1em;
}

.link {
    color: #0072bb; /* Dark blue */
    text-decoration: none;
    margin: 0 1em;
    font-size: 1em;
    transition: color 0.3s;
}

.link:hover {
    color: #004d99; /* Darker blue on hover */
}

/* Responsive styles */
@media (max-width: 600px) {
    .btn {
        width: 80%;
        padding: 1em;
        text-align: center;
    }

    .link-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;;
    }
}