@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;
    background: #000;
    color: #fff;
}
img {
    max-width: 100%;
}
section {
    padding: 50px 0;;
    border-bottom: 10px solid #33ff10;
}
section .section-heading {
    font-size: 60px;
    color: #ffeb00;
    margin-bottom: 25px;
}
.container {
    position: relative;
    z-index: 1;
}
.letter-spacing {
    letter-spacing: 3px;
}
.text-shadow-black {
    text-shadow: 4px 4px #33e414;
}
.flip-img {
    transform: scaleX(-1);
}
.btn-buynow {
    padding: 10px 25px;
    color: #20de00;
    font-size: 24px;
    background: #fff;
    border: 2px solid #34fe12;
    text-transform: uppercase;
}
.btn-buynow:hover {
    background: #07b65b;
    color: #ffeb00;
}
.top-people img {
    width: 170px;
    border: 8px solid #34fe12;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 6px 6px #ffeb03;
}
#intro {
    background: #000 url(../img/bg-gif.gif) center top / contain;
    color: #fff;
    font-size: 32px;
    position: relative;
}
#intro::after {
    content: "";
    background: rgba(0,0,0,.15);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
#buy-token {
    background: #ffeb03;
    border-bottom: 10px solid #33ff10;
}
#story ul li {
    margin-bottom: 15px;
}
#how-to-buy .step {
    border: 3px solid #34fe12;
    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;
    }
}