* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f6f6e9;
    font-family: 'Playfair Display', serif;
}

/* Header */
.navn {
    background-color: #f6f6e9;
}

.navn h1{
    text-align: center;
    color: #e8a45b;
}

.container {
    margin: auto;
    background-color: #e8a45b;
    width: 100%;
    z-index: 999;
    position: fixed;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 15px;
}

nav {
    flex: 1;
    text-align: center;
    font-size: larger;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
    transition: 0.5s;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #f6f6e9;
}

a.active {
    color: #f6f6e9;
}


/* Intro og billede */
.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img {
    max-width: 100%;
    padding-top: 100px;
}

.col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px;
}

.col-2 h4 {
    margin: 25px;
}

.col-2 p {
    margin: 25px;
}

p1 a:hover {
    color: #e8a45b;
}

p1 a.active {
    color: #e8a45b;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    font-size: larger;
    border: 2px solid #e8a45b;
    margin: 25px;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    flex: 1; /* Add this line to distribute the columns equally */
}

footer .col img {
    width: 150px;
}

footer a {
    font-size: larger;
    text-decoration: none;
    color: black;
    margin-bottom: 10px;
    text-align: center; /* Add this line to center the text */
}

footer .follow {
    margin-top: 20px;
    text-align: center; /* Add this line to center the text */
}

footer .follow i {
    color: #cce7dc;
    padding-right: 4px;
    cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
    color: #e8a45b;
}

footer .copyright {
    width: 100%;
    text-align: center;
}

/* Kontakt */
.kon {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}

.kon p {
    font-size: large;
}

/* Om os */
.her {
    padding-top: 150px;
    margin-left: 50px;
    margin-right: 50px;
}

.her h1 {
    padding-bottom: 25px;
}

/* billeder */
.col-3 {
    flex-basis: 33%;
    min-width: 300px;
}

.col-3 img {
    max-width: 100%;
    padding-top: 100px;
}

.col-3 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px;
}

.col-3 h4 {
    margin: 25px;
}

.col-3 p {
    margin: 25px;
}

.over {
    padding-top: 150px;
    text-align: center;
}

.over h1 {
    font-size: large;
}

h1 a:hover {
    color: #e8a45b;
}

h1 a.active {
    color: #e8a45b;
}