body {
    background: url("/assets/plusminus.png");
    background-size: 564px 95px;
    font-family: "Funnel Sans", sans-serif;
    font-size: 1em;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;   /* Centers vertically */
    height: 100vh;         /* Makes the body take the full viewport height */
    margin: 0;             /* Removes default body margin */
}

h1 {
    color: #14080e;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.7em;
}

h2 {
    color: #204e4a;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
}


p {
    color: #331e38;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1em;
    border-top: 1px solid #ffd400;
    padding-top: 30px;
    margin-top: 30px;
}

span.plus {
    color: #ffd400;
}

p.footer, p.footer a {
    color: #204e4a;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 0.6em;
    padding: 20 0 25 0;
    border: 0;
    margin: 0;
}

.logoblock {
    width: 120px;
    height: 120px;
    border-radius: 12px;
}

.card {
    background-color: white;
    padding: 60px; /* Add some padding inside the card */
    border-radius: 24px; /* Creates the rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.07); /* Creates the floating effect */
    /* You can add specific width and height or let content define it */
    width: 300px; /* Example width */
    min-height: 200px; /* Example minimum height */
    display: flex; /* Optional: to center content inside the card */
    justify-content: center; /* Optional: to center content horizontally inside the card */
    align-items: center;   /* Optional: to center content vertically inside the card */
    text-align: center;    /* Optional: to center text content inside the card */
}

.card-content {
    font-family: sans-serif;
    color: #333;
}
