/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1c1c1c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-image: url('your-background-image.jpg'); /* Add a cool background */
    background-size: cover;
    background-position: center;
}

.main-container {
    text-align: center;
    transform: translateY(-50%);
}

.title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #00d4ff;
    animation: glow 1.5s ease-in-out infinite alternate;
}

.description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button {
    padding: 15px 30px;
    background-color: #00d4ff;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #1c1c1c;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button:hover {
    transform: scale(1.1);
    background-color: #00b3cc;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 30px #00d4ff, 0 0 40px #00b3cc;
    }
    100% {
        text-shadow: 0 0 20px #00d4ff, 0 0 30px #00d4ff, 0 0 40px #00d4ff, 0 0 50px #00b3cc;
    }
}
