body {
    background-color: #571B7E;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.center-image {
    max-width: 50vw;
    max-height: 50vh;
    width: auto;
    height: auto;
    margin-bottom: 5px; /* Add margin at the bottom of the image */
    display: block; /* Make sure the image is treated as a block element */
    margin: 0 auto; /* Center the image horizontally */
}

@media only screen and (max-width: 480px) {
    /* Adjust image size for smaller screens */
    .center-image {
        max-width: 90vw; /* Set a larger max-width for very small screens */
        max-height: 90vh; /* Set a larger max-height for very small screens */
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    /* Adjust image size for smaller tablets */
    .center-image {
        max-width: 80vw; /* Set a larger max-width for smaller tablets */
        max-height: 80vh; /* Set a larger max-height for smaller tablets */
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    /* Adjust image size for larger tablets */
    .center-image {
        max-width: 70vw; /* Set a larger max-width for larger tablets */
        max-height: 70vh; /* Set a larger max-height for larger tablets */
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    /* Adjust image size for small desktop screens */
    .center-image {
        max-width: 60vw; /* Set a larger max-width for small desktop screens */
        max-height: 60vh; /* Set a larger max-height for small desktop screens */
    }
}

@media only screen and (min-width: 1201px) {
    /* Adjust image size for larger desktop screens */
    .center-image {
        max-width: 50vw; /* Set a larger max-width for larger desktop screens */
        max-height: 50vh; /* Set a larger max-height for larger desktop screens */
    }
}

.styled-button {
    padding: 10px 20px;
    font-size: 16px;
    background: linear-gradient(45deg, #4CAF50, #FFD700);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
