@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@300;400;500&display=swap');
html,body {
    overflow-x: hidden;
}
body {
    font-family: 'Mitr', sans-serif;
    font-size: 22px;    
}
img {
    max-width: 100%;
}
section {
    padding: 50px 0;;
}
section .section-heading {
    font-size: 50px;
    color: #018440;
    margin-bottom: 25px;
}
.letter-spacing {
    letter-spacing: 3px;
}
.text-shadow-black {
    text-shadow: 5px 5px #000;
}
.flip-img {
    transform: scaleX(-1);
}
.btn-buynow {
    padding: 10px 25px;
    color: #018440;
    font-size: 26px;
    background: #fff;   
}
.btn-buynow:hover {
    background: #07b65b;
}
#intro {
    background: #018440;
    color: #fff;
    font-size: 32px;
}
#buy-token {
    background: #036f37;
    color: #fff;
}
#how-to-buy .step {
    border: 3px solid #018440;
    border-radius: 10px;
    margin-bottom: 24px;
    padding: 24px;
}
#how-to-buy .step img {
    width: 160px;
}
@media (max-width: 576px) {
    body {
        font-size: 20px;
    }
    section {
        padding: 30px 0;;
    }
    section .section-heading {
        font-size: 40px;
        margin-bottom: 15px;
    }
    #intro {
        text-align: center;
        font-size: 24px;
    }
}