body {
    background-color: #001F3F;
    color: #F5D1A0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 100vh;
    margin: 0;
}

.container {
    border: 2px solid rgba(0, 128, 128, 0.6);
    border-radius: 8px;
    box-shadow: 
        0 0 8px rgba(0, 128, 128, 0.7),
        0 0 15px rgba(0, 255, 255, 0.5),
        0 0 20px rgba(0, 255, 255, 0.3);
    margin: auto;
    width: 360px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 30px;
}

.fetched {
    margin: 0;
    font-family: "Press Start 2P", sans-serif;
    line-height: 25px;
    background-color: #001F3F;
    color: #FF8C00;
    padding: 10px;
    border: 2px solid #FF8C00;
    border-radius: 8px;
    text-align: center;
    text-shadow:
        0 0 5px #FF8C00,
        0 0 10px #FF8C00,
        0 0 20px #FF8C00,
        0 0 40px #FF8C00;
    animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 5px #FF8C00,
            0 0 10px #FF8C00,
            0 0 20px #FF8C00,
            0 0 40px #FF8C00;
        border-color: #FF8C00;
        box-shadow:
            0 0 5px #FF8C00,
            0 0 10px #FF8C00,
            0 0 20px #FF8C00,
            0 0 40px #FF8C00;
    }
    20%, 24%, 55% {
        text-shadow: none;
        border-color: transparent;
        box-shadow: none;
    }
}

h1, h4 {
    margin: 0;
}

h4 {
    border: 2px solid #008080;
    border-radius: 5px;
    margin: auto;
    padding: 5px 10px;
    font-family: "Press Start 2P", sans-serif;
    font-size: 12px;
    color: #008080;
    box-shadow: 0 0 10px #008080;
}

button {
    margin: auto;
    background-color: #008080;
    border: none;
    color: #FFFFF0;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: "Press Start 2P", sans-serif;
    cursor: pointer;
    box-shadow: 0 0 10px #008080;
    transition: box-shadow 0.3 ease;
}

button:hover {
    box-shadow: 0 0 20px #FF8C00;
    color: #FF8C00;
}

button:focus {
    outline: none;
}