/* © Anton Kalyuta 2022 - 2026 */
.greenButton {
    user-select: none;
    cursor: pointer;
    color: white !important;
    border: none;
    border-radius: 15px;
    background: #00cdba !important;
    font-weight: bold;
    padding: 15px 50px;
    font-size: 20px;
}

.greenButton:active:hover {
    background: #03af9f;
}

.greenButton:hover {
    background: #02bdab;
}

.blueButton {
    user-select: none;
    cursor: pointer;
    color: white !important;
    border: none;
    border-radius: 15px;
    background: #05c3d7 !important;
    font-weight: bold;
    padding: 15px 50px;
    font-size: 20px;
}

.blueButton:active:hover {
    background: #038a98;
}

.blueButton:hover {
    background: #04b6c9;
}

.pinkButton {
    user-select: none;
    cursor: pointer;
    color: white !important;
    border: none;
    border-radius: 10px;
    background: #ea7f7f !important;
    font-weight: bold;
    padding: 15px 50px;
    font-size: 20px;
}

.pinkButton:active:hover {
    background: #9b7e4a;
}

.pinkButton:hover {
    background: #d77171;
}

@media (max-device-width: 480px) {
    .blueButton, .greenButton, .pinkButton {
        font-size: 60px;
        border-radius: 10px;
        padding: 50px 150px;
    }
}