@keyframes blackFade {
    0% {
        transform: translate(5vw, 0);
        filter: blur(20px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        filter: blur(0px);
        opacity: 1;
    }
}

#donateTitle {
    text-align: center;
    opacity: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    animation: blackFade 500ms;
    animation-fill-mode: forwards;
}

#mainInfoDiv {
    display: grid;

    grid-template-columns: 1fr 1fr;
}

#mainInfoText {
    opacity: 0;
    margin: 20px 10vw 0 10vw;
    animation: blackFade 500ms;
    animation-delay: 50ms;
    animation-fill-mode: forwards;
}

#mainInfoLinks {
    display: grid;
    grid-template-rows: 1fr 1fr;
    opacity: 0;
    animation: blackFade 500ms;
    animation-delay: 100ms;
    animation-fill-mode: forwards;
}
/*
#mainInfoButtons button{
    color: white;
    background-color: black;
    border: solid 5px;
    margin-left: 10%;
    margin: auto;
    display: block;
    text-align: center;
    width: 30%;
    height: 50%;
    transition: 250ms;
}
*/

.qrWrapper {
    width: 30%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.qrWrapper img {
    width: 185px;
    margin: auto;
}

@media screen and (max-width: 700px) {
    #mainInfoDiv {
        display: block;
    }

    .qrWrapper {
        width: 80%;
        height: 80%;
        margin: 20px auto;
    }

    .qrWrapper img {
        width: 70%;
    }

}

@media screen and (min-height: 769px) {
    footer {
        position: fixed;
        width: 100%;
        bottom: 0;
    }
}