* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    text-align: center;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.name {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideIn 1.5s ease-out forwards;
    color: white
}

.description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 2s 1s forwards; /* Delay for fadeIn */
    color: white
}

.button {
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}