* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(268deg, #020202 0%, #000000 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.2rem;
    margin: 15px 0;
    line-height: 1.6;
}



.contact {
    margin: 25px 0;
}

.contact a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}


/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .social {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}