@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

*:focus {
    outline: 0;
}

html,
body,
#root {
    min-height: 100%;
    background: #f5f5f5;
}

body {
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

body,
input,
button {
    font: 14px "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

.home {
    max-height: 100vh;
    display: flex;
}

.left {
    flex: 0.5;
}

.right {
    flex: 0.5;
    margin-top: 2rem;
}

.right ul {
    display: flex;
    flex-wrap: wrap;
}

.right ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    border: 0;
    margin: 0 0 5px 0px;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 0.5rem;
    margin-top: 0.2rem;

    background: #00d79d;
    border: 2px solid #00d79d;
}

.active {
    background: #fc0 !important;
    border: 0px solid #fc0 !important;
    color: #000 !important;
}

.right ul a li {
    color: #ffffff;
}

.logo {
    height: 100vh;
    width: auto;
}

.title {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #989898 !important;
}

.links {
    display: flex;
    justify-content: flex-end;
    width: 94%;
}

/* ------------------------ DONATE ------------------------------------------ */
main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background: #efefef;
}

.nav {
    width: 100%;
    height: 4rem;
    background-color: #00d79d;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2rem;
    text-transform: uppercase;
}

.nav i {
    margin-right: 1rem;
}

.donate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donate h1 {
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.donate h3 {
    font-weight: normal;
}

.card {
    position: relative;
    margin: 40px auto;
    width: 560px;
    max-width: 560px;
    min-height: 300px;
    height: max-content;
    padding: 32px;
    background: #fff;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font: 1.2rem "Roboto", sans-serif;
    box-shadow: 0 5px 14px rgb(139, 139, 139);
}

.card .header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card p {
    font-weight: bold;
}

.card .description {
    margin-top: 0.4rem;
    text-align: center;
    font-weight: normal;
    max-width: 460px;
}

.card h2 {
    font-weight: bold;
    font-size: 3rem;
    text-transform: uppercase;
}

.card h4 {
    font-weight: bold;
    width: 100%;
    text-align: end;
}

.donate .change {
    cursor: pointer;
    font-weight: bold;
    color: #00d79d;
}

.donate .change:hover {
    color: rgb(0, 173, 127);
}

footer {
    width: 100%;
    height: 4rem;
    background-color: #00a579;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    text-transform: uppercase;
}

/* ------------------------ MOBILE ------------------------------------------ */
@media (max-width: 1302px) {
    .left {
        display: none;
    }

    .right {
        flex: 1;
        padding: 2rem;
    }

    .right ul {
        display: flex;
        flex-wrap: nowrap;
    }

    .right ul a {
        width: 100%;
        margin-left: 0rem;
    }

    .links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .title {
        font-size: 24px;
    }

    
}

@media (max-width: 700px) {
    .card {
        padding: 16px;
        width: 70%;
    }
}

@media (max-width: 500px) {
    .donate h1 {
        font-size: 1rem;
    }

    .card {
        padding: 16px;
        width: 90%;
        min-height: 240px;
    }

    .card p {
        font-size: 0.9rem;
    }

    .card .description {
        font-size: 0.9rem;
    }
    
    .card h2 {
        font-size: 2rem;
    }
    
    .card h4 {
        font-size: 1rem;
    }
}