#give {
    width: 100%;
    height: 100vh;
    min-height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

#give_box {
    height: 60dvh;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10rem;
    padding-left: 5%;
    padding-right: 5%;
    background-color: var(--white);
}

#give_box > h2, h3, p{
    text-align: center;
    color: var(--black);
}

#give_box > h2 {
    font-family: "Gazpacho-Light", sans-serif;
    font-weight: 400;
    font-size: 3cap;
    text-transform: uppercase;
    color: var(--dark_blue);
}

#give_box > h3 {
    font-family: "Gazpacho-Light", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--dark_blue);
    line-height: .1rem;
    align-self:flex-start;
    margin-bottom: 0;
}

#give_box > ol {
    list-style-type: decimal;
    font-family: "Fira Sans", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--black);
    align-self: flex-start;
}

#give_box > ol > li > p {
    font-family: "Fira Sans", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--black);
    text-align: left;
}

#give_box > p {
    font-family: "Fira Sans", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--black);
}

#give_box > a {
    text-decoration: none;
}

#give_box > a > button {
    align-self: center;
    text-align: center;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--dark_blue);
    border: 1px solid;
    border-radius: 2px;
    padding: .5rem 1rem;
    margin-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
}

#give_box > a >button:hover {
    background-color: var(--white);
    border: 1px solid var(--dark_blue);
    border-radius: 2px;
    color: var(--dark_blue);
    transition: all .3s ease-in-out;
}

@media (max-width: 500px) {
    #give_box {
        padding: 5%;
        margin: 3dvh;
    }

    #give_box > h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 350px) {
    #give_box {
        padding: 5%;
        margin: 1dvh;
    }

    #give_box > h2 {
        font-size: 2rem;
    }
}