body {
    margin: 0;
    padding: 0;
    font-family: 'Dosis';
    background-image: url('background.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px; /* Adjust the maximum width as needed */
    padding: 10px;
    overflow: auto; /* Add this line to enable scrolling if content overflows */
}

/* Rest of the CSS remains the same */

.logo img {
    max-width: 250px;
    margin-bottom: 10px;
}

h1 {
    font-size: 28px;
	color: #FF0000 !important;
}

@font-face {
    font-family: "Socake";
    src: url("Socake.ttf");
}

p {
    font-family: "Socake";
	font-size: 16px;
    margin-bottom: 10px;
}

/* Add this CSS to style social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icon {
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

/* Hover effect */
.social-icon:hover {
    color: #007bff;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
}
/* Adjust the container size for web view */
@media (min-width: 769px) {
    .container {
        max-width: 800px; /* Increase the maximum width as needed */
        padding: 20px; /* Increase padding for better spacing */
    }

    h1 {
        font-size: 36px; /* Increase font size for heading */
    }

    p {
        font-size: 20px; /* Increase font size for paragraph */
    }
}


.countdown {
    margin-top: 40px;
	font-family: "Socake";
    display: flex;
    justify-content: center;
    align-items: center;
}

.time {
    margin: 0 15px;
    font-size: 36px;
}

.time-label {
    display: block;
    font-size: 14px;
    color: #999;
}


/* Add this CSS to style the WhatsApp button */
.whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366; /* WhatsApp green color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.whatsapp-button:hover {
    background-color: #128c7e; /* Darker green on hover */
}
