
body {
    scroll-behavior: smooth;
    background-color:rgb(21 61 14);
    font-family: 'Patrick Hand SC', sans-serif;
    font-size:1.3em;
}
body h2, body h1 {
    font-size:3rem;
    font-weight: bold;
}
body h2, body h1, body h3, body h4, body h5 {
    color:#3d2fd1 !important;
}
/* set first section to 100vh minus the height of the navbar */
#home {
    /*height: calc(100vh - 56px);*/
    min-height:500px;
}
#home .card {
    height: 100%;
}
#home .card img {
    max-width: 400px;
    margin: 0 auto;
}
.section {
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #f8f9fa;*/
    margin-bottom:30px;
}
.card {
    width: 100%;
    max-width: 800px;
}
.disclaimer {
    color: #dc3545 !important;
}

/* Initial state: hidden with opacity 0 */
.card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/* Fade-in animation when visible */
.card.show {
    opacity: 1;
    transform: translateY(0);
}