body {
    margin: 0;
    font-family: 'Courier New', monospace;
}

.menu {
    padding: 1rem;
    padding-right: 5rem;
    border-bottom: 2px solid #000;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.menu a {
    color: #333;
    text-decoration: none;
}

.menu a:hover {
    color: #666;
}

.content {
    padding: 2rem;
    text-decoration: none;
}

.content a {
    text-decoration: underline;
    color: #000;
}

.bodytext {
    padding: 2rem;
}


