body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #1f1f1f;
    color: #fff;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    margin-top: 40px;
}

.subtext {
    font-size: 24px;
    margin-top: 20px;
}

.footer {
    background-color: #333;
    padding: 20px;
    margin-top: 50px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-description {
    font-size: 18px;
    text-align: center;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.button-list {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4c4c4c;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.button:hover {
    background-color: #666;
}

.button:active {
    background-color: #888;
}

