body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 100px;
    background-color: #1e1e1e;
    color: #fdfdfd;
}

#txt {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #fdfdfd;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    background-color: #d40028;
    color: #fdfdfd;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #c30022;
}

#underline {
    font-style: italic;
    color: #c30022;
}