/* Generel styling */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

header {
    background-image: url('bg.jpg'); /* Erstat med den rigtige URL til dit baggrundsbillede */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;

}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 30px;
}

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

nav ul li a {
    text-decoration: none;
    color: #222222;
    font-weight: bold;
}


To add padding to the left of text for elements like <p> and <h1>, you can use CSS to target these elements and apply padding as needed. Here's an example of how you can add left padding to these elements:

css
Copy code
/* Add left padding to <p> elements */
 

 


/* Add background box on hover for navigation links */
nav ul li a {
    text-decoration: none;
    color: #0074d9;
    font-weight: bold;
    padding: 10px 20px;
    position: relative; /* Add relative positioning for the parent element */
    transition: background-color 0.3s; /* Add a smooth transition for background-color changes */
}

nav ul li a:hover {
    background-color: #0074d9; /* Change the background color on hover */
    color: white; /* Change the text color on hover */
}


/* Add background box on hover for links */


a:hover {
    background-color: #0074d9; /* Change the background color on hover */
    color: white; /* Change the text color on hover */
}





main {
    padding: 0px;
    padding-left: 200px; /* Adjust the padding value as needed */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #BECDD6;
    color: white;
    display: block;
}
#footer {
    position: absolute;
    bottom: 0px;
    width: 100%; 
    height: 20px;
    margin: 0 auto;
}

/* Styling for Web Awesome ikoner */
.fa {
    margin-right: 5px;
}

/* Tilpasning af links med ikoner */
nav ul li a.icon-link::before {
    content: '\f08e'; /* Ændr dette til Web Awesome-ikonets kode */
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
}
