/* Reset some default styles for button */
button, a {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    text-decoration: none;
}

.button-container-1 {
    text-align: center;
    margin-bottom: 50px;
}

.responsive-button-1 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .responsive-button-1 {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .responsive-button-1 {
        font-size: 12px;
        padding: 6px 12px;
    }
}
