/* Style for donate page */

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    align-items: center;    
}

.donations {
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 2vh 10vw;
    background-color: rgb(196, 244, 196);
    align-items: center;
}

.intro {
    width: 80vw;
    font-size: 30px;
    text-indent: 3vw;
}

.link {
    text-decoration: none;
}

.donate {
    display: block;
    width: 30vw;
    height: 40px;
    font-size: 30px;
    background-color: forestgreen;
    color: white;
    border-radius: 10px;
    justify-self: center;
    margin: 3vh auto;
}  

@media only screen and (max-width: 479px) {
    .donate {
        width: 80vw;
    }    
}