div {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.container {
    height: 200px;
    position: relative;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

button {
    text-align: center;
    margin-top: 450px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    background-color: rgb(224, 24, 57);
    border: 3px solid rgb(255, 199, 199);
    border-radius: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
}

body {
    background-color: palegreen;
}

@media screen and (max-width: 1500px) {
    button {
        padding: 8px 16px;
        /* Reduce padding for smaller screens */
        font-size: 1.1em;
        /* Decrease font size for smaller screens */
    }
}

@media screen and (max-width: 576px) {
    button {
        padding: 8px 16px;
        /* Reduce padding for smaller screens */
        font-size: 0.9em;
        /* Decrease font size for smaller screens */
    }
}