body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #222;
    padding: 15px;
}

nav {
    display: flex;           /* gør menu til flex container */
    justify-content: center; /* centrerer links horisontalt */
    gap: 20px;               /* afstand mellem links */
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

main {
    background: white;
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center; /* centrerer indhold */
}

h1 {
    color: #333;
}

/* Fjerner bullet points fra lister og giver afstand mellem punkter */
main ul {
    list-style: none; /* fjern bullets */
    padding: 0;       /* fjern venstre indryk */
}

main ul li {
    margin-bottom: 10px; /* lidt luft mellem punkter */
}

