body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ecf0f1;
    background: #2c3e50;
    background-image: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    animation: gradient-animation 10s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background: rgba(44, 62, 80, 0.8);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.container:hover {
    transform: translateY(-10px);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

a.github-link {
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

a.github-link:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.github-icon {
    margin-right: 10px;
    vertical-align: middle;
}
