body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #2d208f;
    height: 600px; /* fixed pixel height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden; /* prevent scroll */
}

.header {
    animation: zoomIn 1s ease-in-out;
    margin-bottom: 40px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.2em;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.buttons {
    display: flex;
    gap: 25px;
    animation: slideUp 1.2s ease-in;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    background-color: #fff;
    color: black;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.btn:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

footer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: #e0e0e0;
    animation: fadeIn 1s ease-in;
}

/* Animations */
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 📱 Tablet & Mobile View */
@media (max-width: 768px) {
    body {
        height: 680px; /* slightly taller for smaller screens */
        justify-content: center;
        overflow: hidden;
    }

    h1 {
        font-size: 2.4em;
        margin-bottom: 25px;
    }

    .buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1em;
    }

    footer {
        margin-top: 30px;
        font-size: 0.85em;
    }
}

/* 📱 Small Mobile View */
@media (max-width: 480px) {
    body {
        height: 740px; /* adjust for small phones */
    }

    h1 {
        font-size: 2em;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

  
}
