body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.header {
    margin-bottom: 20px;
}

.header h1 {
    font-size: 3em;
    color: #2c3e50;
}

.header p {
    font-size: 1.2em;
    color: #7f8c8d;
}

.main {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 2em;
    color: #2980b9;
}

.content p {
    font-size: 1.2em;
    color: #2c3e50;
}

.footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #95a5a6;
}

.footer a {
    color: #2980b9;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
