/* Body Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #FFFAFA;
}

/* Styling for the central div */
.container {
    width: 700px;
    height: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Change to center the text */
}

/* Styling for the content in the center */
.content {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 100px;
}

/* Styling for the buttons container */
.buttons {
    display: flex; /* Use flexbox for horizontal alignment */
    justify-content: center; /* Center the buttons horizontally */
    gap: 20px; /* Adds a small gap between the buttons */
}

/* Styling for the buttons */
button {
    display: inline-block; /* Ensure buttons are inline within their container */
    padding: 17px 40px;
    border-radius: 50px;
    cursor: pointer;
    border: 1px solid black;
    background-color: black;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.5s ease;
    color: #ddd;
}

button:hover {
    letter-spacing: 3px;
    background-color: white;
    box-shadow: #212121;
    color: black;
}

button:active {
    letter-spacing: 3px;
    background-color: hsl(261deg 80% 48%);
    color: hsl(0, 0%, 100%);
    box-shadow: rgb(93 24 220) 0px 0px 0px 0px;
    transform: translateY(10px);
    transition: 100ms;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    /* Adjust the container to be full width on smaller screens */
    .container {
        width: 90%;
        height: auto; /* Allow height to adjust dynamically */
        padding: 15px;
    }

    /* Reduce the font size of content for smaller screens */
    .content {
        font-size: 20px;
        margin-bottom: 50px; /* Reduce bottom margin */
    }

    /* Stack the buttons vertically on smaller screens */
    .buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px; /* Increase gap between buttons */
    }

    /* Adjust button size for smaller screens */
    button {
        padding: 12px 30px; /* Reduce button padding */
        font-size: 14px; /* Make button text smaller */
    }
}

/* Further adjustments for very small screens (up to 480px) */
@media (max-width: 480px) {
    /* Reduce button padding and font size even more */
    button {
        padding: 10px 20px; /* Further reduce padding */
        font-size: 13px; /* Make text even smaller */
    }

    .content {
        font-size: 18px; /* Further reduce font size for very small screens */
    }
}
