body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    color: #333;
}

h2 {
    color: #555;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

li strong {
    font-weight: bold;
}

.crafting-table {
    border-collapse: collapse;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crafting-table td {
    border: 1px solid black;
}

.container {
    display: flex;
}

.commands {
    flex: 1;
}

.crafting-recipes {
    flex: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
    color: white;
}

.header a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}