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

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

.container {
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff5722;
}

p {
    font-size: 1.5rem;
    line-height: 1.8;
}

.highlight {
    color: #ff5722;
    font-weight: bold;
}

footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: #777;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    position: absolute;
    bottom: 0;
}

footer a {
    color: #ff5722;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}