body {
    background-image: radial-gradient( circle 343px at 46.3% 47.5%,  rgba(242,242,242,1) 0%, rgba(241,241,241,1) 72.9% );
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction:column;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color:#454545;
overflow-x:hidden;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

h1 {font-size: 2em; font-weight:600;}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.png') no-repeat center center;
    background-size: contain;
    opacity: 0.5; /* Adjust opacity for visibility */
    z-index: -1;
    font-size:0.9em;
}
.content {
    z-index: 2;
    position: relative;
}
.logo img {
    max-width: 300px;
    padding-top:20px;
}
.card-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top:50px;
    margin-bottom:40px;
}

.card h2 {
    font-size:1.35em;
    font-weight:800;
    padding-bottom:10px;
    padding-top:10px;}

.card {
    background: #eef1f5;
    padding: 0px;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    color: #454545;
    font-family: 'Inter', sans-serif;
    border: none;
}
.card:hover {
    transform: scale(1.1);
}
.card a {
    display: block;
    height: 100%;
    color: inherit !important;
}
.card img {
    max-width: 100%;
    margin-bottom: 15px;
}

.card p {
    font-family: 'Inter', sans-serif !important;
    margin: 0;
    text-align: center;
    padding-bottom:0px;
    padding-left:40px;
    padding-right:40px;
    font-size:.9em;
    color:#565656;
}
a {
    text-decoration:none !important;
}

.button {
    margin:30px 40px 40px 40px;
    background-color: #eef1f5;
    border-radius:5px;
    border:1px solid #454545;
    color:#454545;
    font-size:.9em;
    font-weight:600;
    padding:10px 20px;
}

@media (max-width: 767px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    body {   
        justify-content: flex-start;
        padding:20px;
    }
}