body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

p {
    color: #333;
    font-size: 40px;
    margin: 20px;
}

strong {
    color: #007BFF;
}

h1 {
    color: #333;
    font-size: 100px;
    margin: 20px 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button {
    background-color: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 70px;
    text-decoration: none; /* Add this line to remove underline */
}

.button:hover {
    background-color: #0056b3;
}