body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 50vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}



.card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
}


.logo {
    max-width: 60%;
    height: auto;
}

.message {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.button-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button-image:hover {
    transform: scale(1.05);
}

.h5 {       
    font-size: 10px; 
 

}


/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .message {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .message {
        font-size: 18px;
    }
}
