html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Inter", sans-serif;
}


#heroSection {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../img/hero.jpg");
    background-position: center;
    background-size: cover;
    background-color: #0B111E;
}

#heroSection h1 {
    font-family: "Space Grotesk", sans-serif;
    color: #F1F5F9;
    text-align: center;
    font-size: 64pt;
}

#heroSection h2 {
    font-family: "IBM Plex Sans", sans-serif;
    color: #E2E8F0;
    text-align: center;
    font-size: 28pt;
}

#heroSection h1,
#heroSection h2 {
    line-height: 1.2;
    margin: 5px 20px;
}

#heroSection a {
    margin: 40px;
    background-color: #84CC16;
    color: #ECFCCB;
    width: 200px;
    height: 55px;
    text-decoration: none;
    border-radius: 8px;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#heroSection a:hover {
    background-color: #65A30D;
    transform: scale(1.05);
}


#introCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #F1F5F9;
}

#introCard p {
    font-family: "Inter", sans-serif;
    color: #475569;
    font-size: 16pt;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.7;
}

#boxCard {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
}

#boxCard>a {
    flex: 1 1 0px;
    min-width: 300px;
    margin: 20px;
    text-decoration: none;
}

#boxCard>a>div {
    height: 90%;
    margin: 0;
    background-color: #E2E8F0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    text-align: center;
    border-top: 4px solid #84CC16;
}

#boxCard>a>div:hover {
    background-color: #CBD5E1;
    transform: scale(1.05);
}

#boxCard>a>div img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

#boxCard>a>div h3 {
    font-family: "IBM Plex Sans", sans-serif;
    color: #111827;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 20pt;
}

#boxCard>a>div p {
    font-family: "Inter", sans-serif;
    color: #475569;
    font-size: 12pt;
    margin-top: 5px;
    line-height: 1.5;
}

#boxCard a div span {
    font-family: "Material Symbols Outlined";
    font-size: 100px;
    color: #65A30D;
    margin-bottom: 10px;
}


footer {
    background-color: #0B111E;
    color: #F1F5F9;
    text-align: center;
    padding: 30px 20px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    border-top: 3px solid #84CC16;
}

footer a {
    color: #84CC16;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}