@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.center-box {
    text-align: center;
    max-width: 600px;
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 30px gold;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 30px gold;
    }
    100% {
        text-shadow: 0 0 15px gold, 0 0 30px gold, 0 0 45px gold;
    }
}

.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.floating-box, .typewriter-box {
    width: 400px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    color: white;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: pulseBox 2s infinite alternate;
}

@keyframes pulseBox {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
    }
}

.floating-box:hover {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}

.typewriter-box {
    height: 150px;
    overflow: hidden;
    text-align: left;
    white-space: pre-wrap;
}