
body {
    /*background: #000;*/
}
.black {
    /*background:#333;*/
}

.good {
    padding:3px;
    background:green;
    color:white;
    font-weight: 900;
}

.bad {
    padding:3px;
    background:red;
    color:white;
    font-weight: 900;

}
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}
.cta-button {
    /* ... existing styles ... */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    /* ... existing styles ... */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    color:yellow;
}

.intro {
    font-size:1.5em;
    background:yellow;
    padding: 5px 15px;
}
