﻿body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* Align items in a column */
    min-height: 100vh; /* Ensure page takes at least the viewport height */
}

header {
    background-color: #004B1A;
    color: #fff;
    padding: 10px 20px;
    font-family: Helvetica, Arial, sans-serif; /* Set font family */
    text-align: left;
    font-weight: bold;
    font-size: 10px;
}

footer {
    background-color: #004B1A;
    color: #fff;
    padding: 10px;
    text-align: center;
}

h2 {
    margin-top: 0; /* Remove margin at the top of h3 */
    font-size: 100px;
    opacity: 40%;
    text-align: center;
}

h3 {
    margin-top: 0; /* Remove margin at the top of h3 */
    ;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-size: 40px;
    opacity: 60%;
    text-align: center;
}

p {
    margin-top: 0; /* Remove margin at the top of h3 */
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-size: 24px;
}

p2 {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    font-size: 12px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Grow to fill remaining space */
    padding: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    flex: 1;
    padding: 20px;
    background-color: #fff;
    //box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

    .column img {
        max-width: 600px;
        height: auto;
    }
