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

body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at center, #0a0f1f 0%, #000 100%);
    color: #00ffe0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;
}

h1 {
    font-size: 3rem;
    color: #00ffe0;
    margin-bottom: 15px;
    border-bottom: 2px solid #00ffe0;
    padding-bottom: 5px;
}

p {
    font-size: 1.2rem;
    background-color: rgba(0, 255, 224, 0.1);
    padding: 10px 20px;
    border: 1px solid #00ffe0;
    border-radius: 8px;
    margin: 5px 0;
    box-shadow: 0 0 10px #00ffe0;
}
