body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    /* height: 100vh; */
    /* display: flex;
    justify-content: center;
    align-items: center; */
}
.btns{
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.container {
    text-align: center;
}

.coin-container {
    perspective: 1000px;
    margin: 20px auto;
    width: 120px;
    height: 120px;
}

.coin {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
    cursor: pointer;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd700, #c9a400);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    backface-visibility: hidden;
}

.tail {
    transform: rotateX(180deg);
}

#stats {
    margin-top: 20px;
    font-size: 18px;
}
 h1 {
        font-size: 2.5em;
        color: #1a1a1a;
        margin-bottom: 30px;
        line-height: 1.2;
}

h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}
    
.faq-question {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}
    
    @media (max-width: 768px) {
        /* .container {
            padding: 20px 15px;
        } */
        
        h1 {
            font-size: 2em;
        }
        
        h2 {
            font-size: 1.5em;
        }
    }