body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background-color: #6a0dad; /* Bright purple */
}

.container {
    text-align: center;
}

h1 {
    color: #39ff14; /* Bright green */
    font-size: 3rem;
    text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.twitter-link {
    margin-top: 150px; /* Yazı ile bağlantı arasına mesafe ekledik */
    color: #1da1f2; /* Twitter blue */
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.twitter-link:hover {
    color: #0d8bf2; /* Slightly darker Twitter blue on hover */
}
