body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4; /* Soft background color */
    font-family: 'Arial', sans-serif; /* Improved typography */
}

.container {
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Adding a subtle shadow */
    padding: 40px;
    background: white; /* Background for the container */
    border-radius: 10px; /* Rounded corners for the container */
}

.logo, .new-logo {
    /* Remove border-radius to avoid rounding the logos */
    max-width: 200px;
    margin-bottom: 20px;
}

.message {
    font-size: 20px;
    color: #333; /* Slightly darker text for better readability */
    margin-bottom: 20px;
}

.beta-info {
    margin-bottom: 10px;
    color: #555; /* Soften the color */
}

.beta-button {
    display: inline-flex; /* Ensures content is laid out as a flex container */
    align-items: center; /* Centers the content vertically */
    justify-content: center; /* Centers the content horizontally */
    padding: 10px 20px;
    background-color: #37D15C;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

.new-logo {
    width: 50px;
    margin-right: 10px;
    margin-top: 15px;
}

/* Bouncing animation keyframes */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2.5px);
    }
}


