html, body{
    margin: 0px;
    padding: 0px;
    outline: 0px;
    height: 100%;
    font-size: 16px;
    overflow-x: hidden;
}

h1 {
    font-family: Roboto;
    text-transform: uppercase;
}

p {
    font-family: Roboto Slab;
    font-weight: 300;
}

#page-content {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#about-wrapper {
    width: 50%;
    height: 100%;
    float: left;
    display: block;
    background: linear-gradient(to right, #7E57C2 , #5E35B1);
}

#about-pane {
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg-pattern.svg);
    background-size: 150px 150px;
    background-repeat: repeat;
    text-align: center;
}

#about-pane h2 {
    font-family: Roboto Slab;
    font-size: 1.2rem;
    line-height: 2rem;
    color: white;
    max-width: 80%;
    font-weight: 300;
    margin: auto;
}

#about-pane .devlink {
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    text-decoration: none;
}

#about-pane .call-to-action {
 margin-top: 50px;
}

#about-pane .call-to-action a {
    padding: 20px 30px 20px 30px;
    border: 0px;
    text-decoration: none;
    background-color: #7C4DFF;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.8rem;
    font-family: roboto;
    font-weight: 300;
    text-transform: uppercase;
    outline: none;
}

#donate-wrapper {
    width: 50%;
    height: 100%;
    float: left;
    display: block;
    background-color: #F5F5F5;
}

#donate-pane {
    padding-top: 20px;
    height: 100%;
    overflow: scroll;
}

#donate-pane #card-list {
    padding: 0px;
    text-align: center;
}

#donate-pane #card-list li {
    padding: 0px;
}

#donate-pane .card {
    list-style-type: none;
    display: inline-block;
    max-width: 280px;
    vertical-align:top;
    border-radius: 5px;
    height: 450px;
    margin: 15px;
    --box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background-color: white;
    transition-timing-function:cubic-bezier(.59,.05,.45,1);
    transition-duration: 0.3s;
}

#donate-pane .card:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

#donate-pane .card .card-header {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    border-radius: 5px 5px 0px 0px;
    text-align: center;
}

#donate-pane #w3c-card .card-header {
    background-color: #E91E63;
    background: url(../img/w3c-card-header.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 120%;
}

#donate-pane #w3cdevs-card .card-header {
    background-color: #E91E63;
    background: url(../img/w3cdevs-card-header.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 120%;
}

#donate-pane .card .card-header h2 {
    color: white;
    font-family: Roboto;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .02em;
    margin: 0px;
}

#donate-pane .card .card-description {
    padding: 20px 20px 20px 20px;
}

#donate-pane .card .card-description p {
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(0,0,0, 0.54);
    margin: 0px;
    text-align: left;
    line-height: 1.7rem;
}

#donate-pane .card .card-description .call-to-action {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 30px;
}

#donate-pane .card .card-description .call-to-action a {
    cursor: pointer;
    padding: 17px 30px 15px 30px;
    border: 0px;
    background-color: #FF4081;
    color: white;
    border-radius: 5px;
    margin-top: 30px;
    font-size: 0.8rem;
    font-family: roboto;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
}

#donate-pane #w3c-card .card-description .call-to-action a {
    background-color: #536DFE;
}

#donate-pane #w3cdevs-card .card-description .call-to-action a {
    background-color: #448AFF;
}

#donate-pane .legal-mention {
    font-size: 0.8rem;
    font-weight: 300;
    text-align: left;
    margin-top: 20px;
    color: rgba(0,0,0,0.54);
    padding: 20px 40px 20px 40px;
    margin: auto;
}

@media (max-width: 768px) {

    #page-content {
        height: auto;
    }

    #about-wrapper {
        width: 100%;
        height: auto;
    }
    #donate-wrapper {
        width: 100%;
        height: auto;
    }

    #about-pane {
        padding-top: 30px;
    }
}
