/* filepath: /home/kaareinigo/Desktop/Snittesiden/styles.css */
body {
    background-color: rgb(0, 64, 8);
    color: white; /* Tilføjet for bedre læsbarhed af tekst */
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgba(0, 0, 0, 0.1); /* Let mørkere baggrund for headeren */
    padding: 1em 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    text-align: center;
}
