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

body {
    font-family: monospace;
    font-size: 18px;
    line-height: 1.8;
    color: #8FBC8F;
    background: #1a1a1a;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 20px;
    font-weight: normal;
}

p {
    margin-top: 10px;
}

a {
    color: #8FBC8F;
    text-decoration: underline;
}