* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    text-align: center;
}

.content h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.content h2 {
    margin-top: 20px;
    font-size: 1.5rem;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.6;
}