@font-face {
    src: url('fonts/Quicksand-Bold.ttf');
    font-family: 'Quicksand-Bold';    
    font-weight: normal;
} 

html, body{
    margin: 0;
    padding: 0;
    background-color: #F9F9F9;
    height: 100%;
	font-family: 'Quicksand-Bold'; 
}

header{
    width: 100%;
    height: 73px;
    background: #185196;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

footer{
    width: 100%;
    height: 73px;
    background: #185196;
    position: fixed;
    bottom: 0px;
}

a{
    text-decoration: none;
    color: #000000;
}

.box-logo{
    width: 100%;
    text-align: center;
}

.box-logo img{
    width: 90%;
    max-width: 683px;
    margin: 20px 0px;
}

.box-button{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.button{
    width: 379px;
    height: 230px;
    /*background: linear-gradient(225.76deg, #FFDC1D 45.81%, #F49032 60%);*/
    background: linear-gradient(225.76deg, #FFDC1D 45.81%, #ffc219 60%);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    border-radius: 20px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* .button{
    width: 300px;
    height: 230px;
    background: linear-gradient(225.76deg, #FFDC1D 45.81%, #F35931 60%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    text-align: center;
    margin: 30px auto;
    position: relative;
} */

.button img{
    width: 90px;
    height: 80px;
}

.button p{
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 37px;
}

#card{
    width: 190px;
    height: 137px;
    margin-bottom: -15px;
}

@media screen and (max-width: 560px) {
    
    .button{
        width: 260px;
        height: 210px;
        background: linear-gradient(225.76deg, #FFDC1D 45.81%, #F49032 60%);
        box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
        border-radius: 20px;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* .button{
        width: 260px;
        height: 210px;
        background: linear-gradient(225.76deg, #FFDC1D 45.81%, #F35931 60%);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    } */
    
    .button img{
        width: 111px;
        height: 100px;
    }
    
    .button p{
        font-style: normal;
        font-weight: bold;
        font-size: 22px;
        line-height: 37px;
    }

    #card{
        width: 130px;
        height: 113px;
        margin-bottom: -15px;
    }

    footer{
        position: initial;
    }
    

}