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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.content {
    animation: float 6s ease-in-out infinite;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #64ffda;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #8892b0;
}

.links {
    display: flex;
    justify-content: center;
}

.links a {
    color: #64ffda;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #ffffff;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .links a {
        font-size: 1rem;
    }
} 