body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.button-container {
    position: auto;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.single-button a,
.button-container a {
    text-decoration: none;
    padding: 10px 20px;
    color: white;
    background-color: #007bff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.single-button a:hover,
.button-container a:hover {
    background-color: #0056b3;
}
.content {
    padding: 20px;
    text-align: center;
}
.content h1 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.content p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}
.content p span {
    font-weight: bold;
    color: #0056b3;
}
.footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}