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

body {
    background: #000;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    padding: 40px;
}

p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 1rem;
}

a {
    color: #00aaff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

a:hover {
    border-bottom: 1px solid #00aaff;
}

