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

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    margin-bottom: 2em;
}

p {
    color: #555;
    font-size: 18px;
}

hr {
    margin: 20px 0;
}

h2 {
    color: #333;
}

.email {
    font-weight: bold;
    color: #007BFF;
    cursor: pointer;
}

.email:hover {
    text-decoration: underline;
}