*{
    font-family: 'Montserrat', sans-serif;
}




.main{
    min-height: 100vh;
    background: linear-gradient(#07072396,#07072396), url(../images/background.jpg);
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

/* =============== Header ================== */

.logo {
    display: flex;
    align-items: center;
}

a:active {
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}

header.za_header {
    padding: 20px 50px;
    /* color: #fff; */
}

.logo span {
    color: #cfdaf9;
    font-size: 20px;
}

.logo img {
    margin-right: 20px;
    width: 260px;
}


/* =================== Content section ============== */

h1.title {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

h2.title {
     text-align: center;
     color: #fff;
     margin-top: 50px;
 }

.coin_card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ccc;
    height: 200px;
    width: 200px;
    background-color:  #0e3c75;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    margin: 20px auto;
}


.coin_card:hover{
    filter: drop-shadow(rgba(237, 225, 255, 0.15) 0px 0px 20px);
    transition: all 0.1s ease 0s;
}

.coin_card-icon img {
    height: 75px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.coin_card-icon img.nym {
    height: 30px;
    border-radius: 0;
    filter: drop-shadow(2px 4px 6px black);
    margin-top: 35px;
}

h2.coin_card-title {
    font-size: 23px;
    font-family: 'Paytone One', sans-serif;
    font-weight: 500;
}

.bg{
    background-size: cover;
    background-repeat: no-repeat;
}

/* ================== Footer ================= */

footer.za_footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

.footer_letters {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_letters .letter {
    font-size: 20px;
    text-transform: uppercase;
    color: #949494;
    margin: 0px 20px 0px 0px;
}



.social_links a {
    color: #8c8c8c;
    font-size: 18px;
    margin-left: 20px;
}

.social_links a:hover {
    color: #fff;
}

@media screen  and (max-width: 576px) {
    h1.title{
        font-size: 24px;
    }
    h2.title{
        font-size: 20px;
    }

    footer.za_footer{
        flex-direction: column;
        align-items: center;
        padding:10px;
    }

    header.za_header{
        padding: 10px;
        display: flex;
        justify-content: center;
    }

    .social_links{
        margin-top: 20px;
    }

    .social_links a{
        font-size: 14px;
        margin-left: 9px;
    }
}