body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    text-align: center;
}

* {
    margin: 0px;
}

.container {
    /* flex: 1; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.animated-text {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 1s infinite, color-change 2s infinite;
}

footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
}

footer p {
    margin: 5px 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes color-change {
    0% {
        color: #ffffff;
    }
    25% {
        color: #3498db;
    }
    50% {
        color: #2980b9;
    }
    75% {
        color: #c1cf5c;
    }
    100% {
        color: #ffffff;
    }
}
