/* Reset some default styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #777;
}

.countdown {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.countdown div {
    margin: 0 10px;
    font-size: 2rem;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Updated button styling for a standout appearance */
.get-followers-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #ff6f61; /* Change the button color to a standout color */
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.get-followers-button:hover {
    background-color: #ff4f3b; /* Change the button color on hover for extra emphasis */
}

.get-followers-button:focus {
    outline: none;
    background-color: #ff4f3b; /* Change the button color on focus */
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .container {
        text-align: center;
    }
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .countdown {
        flex-direction: column;
    }
    .countdown div {
        margin: 10px 0;
    }
}
