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

body {
    background: linear-gradient(135deg, #1abc9c, #2ecc71, #3498db, #9b59b6, #f1c40f, #e67e22, #e74c3c);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    font-family: Arial, sans-serif;
    height: 100vh;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 50px;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s;
}
.social-media a:hover {
    color: #f1c40f;
}

@media screen and (max-width: 768px) {
    .content {
        padding: 20px;
    }

    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1em;
    }
}