html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

.delete-button {
    display: none; /* Initially hide the delete button */
    padding: 0px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: red;
    border-radius: 0px;
    box-shadow: 0 0px #999;
}

.red-text {
    color: red;
}

.user-div:hover .delete-button {
    display: inline; /* Show the delete button when hovering over user-div */
}

#user-container {
    display: -webkit-inline-box;
    margin-top: 32px;
    max-width: 800px; /* Set a maximum width */
    margin: 32px auto; /* Center the container horizontally */
    padding: 0 20px; /* Add some padding for better readability */
    display: flex;
    flex-wrap: wrap; /* Allow content to wrap when it exceeds the maximum width */
    justify-content: center; /* Center the content horizontally */
}


#user {
    margin-right: 32px;
    margin-left: 32px;
}

#control {
    margin-top: 32px;
    margin-bottom: 32px;
}


button {
    padding: 15px 25px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #000;
    background-color: lightgray;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
}

    button:hover {
        background-color: lightblue;
    }

    button:active {
        background-color: #0094ff;
        box-shadow: 0 5px #666;
        transform: translateY(4px);
    }

.container {
    margin-top: 10%;
}
