* {
    margin: 0;
    padding: 0;
}

.main {
    background-color: white;
    text-align: center;
    margin: 15rem auto; 
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    width: 70%;
    padding: 2rem;
    box-sizing: border-box;
}

.content {
    opacity: 0; 
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s; 
}

.main h1 {
    color: #1e1e64;
    font-size: 2.5em;
    animation: slideIn 0.8s forwards;
    opacity: 0;
}

.main p {
    color: #333;
    font-size: 18px;
    margin: 15px 0;
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.main p:nth-of-type(2) {
    animation-delay: 0.3s;
}

.main p:last-of-type {
    color: #555;
    font-size: 16px;
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
