* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

h1 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #0056b3;
}

h2 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #007bff;
}

p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
