/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at top, #001f1f 0%, #000 100%);
    color: #e0f7fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.container {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(0, 128, 128, 0.3);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 128, 128, 0.2);
    /*max-width: 500px;*/
    width: 80%;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 200, 200, 0.3);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #00bfa5;
    transition: color 0.3s ease;
}

h2 {
    font-size: 1.2em;
    color: #80cbc4;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    color: #b2dfdb;
    text-decoration: none;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #00bfa5;
    transform: scale(1.1);
}

.social-links i {
    font-size: 1.2em;
}

blockquote {
    font-style: italic;
    color: #b2ebf2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

footer {
    font-size: 0.8em;
    color: #80cbc4;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

footer:hover {
    opacity: 1;
}

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