body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    padding: 20px;
    animation: pulsate 2s infinite;
}

a {
    color: #0f0;
    text-decoration: none;
}

@keyframes pulsate {
    0% {
        background-color: #000;
    }
    50% {
        background-color: #003300;
    }
    100% {
        background-color: #000;
    }
}

h1 {
    font-size: 3em;
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
}

#contract-data {
    font-size: 1.5em;
    margin-top: 20px;
    padding: 10px;
    border: 2px solid #0f0;
    border-radius: 10px;
    box-shadow: 0 0 10px #0f0;
}

#chart-data {
  text-align: left;
}

body::before {
    content: url('https://upload.wikimedia.org/wikipedia/commons/b/b5/Radioactive.svg');
    display: block;
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    font-size: 0.9em;
}

th, td {
    border: 1px solid #0f0;
    padding: 8px;
}

th {
    text-align: left;
}

td {
    text-align: left;
}

td.right {
    text-align: right;
}