body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: url(img/body.png);
    position: relative;
    text-align: center;
    background-size: cover;
    animation: fadeIn 1s ease-out;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 30px;
    text-align: center;
    min-height: 100vh;
    animation: slideUp 1s ease-out;
}

.logo {
    width: 80px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

.card-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #f0ededc2;
    width: 100%;
    max-width: 1100px;
    border-radius: 10px;
    padding: 50px 20px;
    opacity: 0;
    animation: fadeIn 2s ease-out 1s forwards;
}

.card {
    background-color: #a2daf8;  /* Blue */
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    text-align: center;
    width: 200px;
    text-decoration: none;
    color: #2b2b2b;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    border: 2px solid transparent;
    transform: translateY(20px);
    opacity: 0;
    animation: cardFadeIn 1s ease-out forwards;
}
.card img {
    width: 130px;
    margin-bottom: 20px;
}

.card span {
    display: block;
    font-weight: 600;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
}

span:hover {
    color: #000000; 
    transform: scale(1.05); 
    font-weight: 650;
}

.card:hover {
    transform: translateY(-3px) !important;  
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.info-text {
    color: #888;
    font-size: 16px;
    max-width: 500px;
    line-height: 1.5;
}

/* Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cardFadeIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .card-container {
        width: 90%;
        padding: 40px 10px;
    }
    
    .card {
        width: 150px;
        padding: 15px 20px;
    }
    
    h1 {
        font-size: 30px;
    }
}
