@font-face {
    font-family: "styled-font";
    src: url(/static/fonts/belinda_w00_regular_Regular.ttf) format("truetype");
}

:root {
    --accent-color: #f89320;
    --styling-color: #13248a;
    --background-color: white;
    --dark-gray: #2F2E2E;
    --foreground-color: whitesmoke;
    --dark-backgruond: #312610;
    
    --fs-xl: 3rem;
    --fs-600: 1.50rem;
    --fs-500: 1.25rem;
    --fs-400: 1rem;
 
} 

@media (max-width: 85em) {
    :root {
        --fs-xl: 2rem;
        --fs-600: 1.25rem;
        --fs-500: 0.9rem;
        --fs-400: 0.875rem;
    }
}

@media (max-width: 60em) {
    :root {
        --fs-xl: 2.5rem;
        --fs-600: 1rem;
        --fs-500: 0.8rem;
        --fs-400: 0.5rem;
    }
}

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    background-image: url(/static/images/get_involved_hero_img.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Adjust for mobile devices */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        background-position: center top;
    }
}

.body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: var(--background-color);
    color: var(--accent-color);
}

.card {
    width: 60%;
    flex-direction: row;
    color: var(--styling-color);
    padding: 1rem;
    margin: -150px auto 100px auto;

}

.mini-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--foreground-color);
    box-shadow: #2F2E2E 0px 0px 10px 0px;
    color: var(--styling-color);
    font-weight: 600;
    border-radius: 15px;
    margin:0 auto; 

}

.mini-card p {
    padding: 0.875rem;
}

.mini-card:last-child {
  flex-basis: 100%;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}


.support-options {
    display: grid;
    gap: 3.5em;
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    margin: 0 auto;
    padding: 1rem;
    
}

.body .row {
    width: 60%;
    margin: 0 auto;
}


@media (max-width: 60em) {
    .our-story{
        width: 90%;
    }

    .grid-section p {
    width: 100%;
    font-size: var(--fs-400);

    }

    .card {
    width: 90%;

}
}

.arrowed-title {
    font-size: var(--fs-500);
    font-weight: bold;
    margin: 1rem auto ;
}

.card h1 {
    margin: 0.5rem 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


@media (max-width: 60rem) {
    .flickity-viewport {
        height: 24rem!important;
    }
}

@media (max-width: 40rem) {
    .flickity-viewport {
        height: 16rem!important;
    }
}

@media (max-width: 30rem) {
    .flickity-viewport {
        height: 12rem!important;
    }
}

.gallery {
  display: block;
  height: auto;
  background: #EEE;
  margin-bottom: 24px;

}

.gallery-cell {
  margin-right: 10px;
  margin-bottom: 24px;
}

.gallery-cell img {
  width: 100%;
  display: block;
  height: auto;
}

/* cell number */
.gallery-cell:before {
  display: block;
  text-align: center;
  background-color: var(--foreground-color);
}

