@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: url('/images/postapocalyptic-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f0f0f0;
    overflow: hidden;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.8);
    min-height: 100vh;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px #000;
    color: #00ffcc;
}

.description {
    max-width: 600px;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    background-color: transparent;
    color: #00ffcc;
    padding: 0.75rem 1.5rem;
    border: 2px solid #00ffcc;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn:hover {
        background-color: #00ffcc;
        color: #000;
        box-shadow: 0 0 10px #00ffcc;
    }
    @keyframes pulse {
    0% { text-shadow: 0 0 10px rgba(0, 255, 204, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 204, 0.8); }
    100% { text-shadow: 0 0 10px rgba(0, 255, 204, 0.5); }
}

@media (max-width: 600px) {
    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
@keyframes pulse {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
    }

    100% {
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    }
}
