body {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    height: 200px;
    width: 200px;
    border-radius: 20%;
    border: 10px solid black;
    margin: 1.5rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line-one,
.line-two {
    display: flex;
}

/* Colors */
.red {
    background-color: #d95980;
}

.yellow {
    background-color: #f99b45;
}

.green {
    background-color: #63aac0;
}

.purple {
    background-color: #819ff9;
}

/* Flash animations */
.flash {
    background-color: white;
}

.userflash {
    background-color: green;
}

/* ✅ Mobile responsiveness */
@media (max-width: 600px) {
    .btn {
        height: 100px;
        width: 100px;
        font-size: 1.2rem;
        margin: 0.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
    }
}
