* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth; /* Gør scrolling jævn kun for links i navigationen */
}

body {
    background-color: #EBEEF3;

    display: flex;
}

/* Header */
header {
    position: fixed;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 12%;
    height: 100%;

    background-color: #0069B7;

}

.logo {
    width: 80%;

    padding-top: 50px;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    height: 100%;
    width: 80%;

    padding-top: 6vh;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;

    height: 80%;

    padding-top: 90px;

    gap: 3.5vh;
}

li {
    display: flex;
    justify-content: start;
}


a {
    font-size: 2.6vh;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    /*skal ændres*/
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    color: #4CAE51;
}

.nav_p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: white;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 50px;

    width: 100%;
}

.sektioner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;

    background-color: #ffffff;
}

.sektioner_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;

    background-color: #EBEEF3;
}

.start_content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;

    width: 45%;
    height: 80vh;

    gap: 50px;

    /* background-color: #552222; */
    padding: 50px 0px 50px 0px; /*Right Top Left Bottom*/
}

.content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;

    width: 50%;

    gap: 50px;

    /* background-color: #552222; */
    padding: 50px 0px 50px 0px; /*Right Top Left Bottom*/
}

.tekst_sektion {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;

    gap: 50px;

    width: 100%;
}

h1 {
    font-family: "Inter", sans-serif;
    font-size: 40px;
}

h2 {
    font-family: "Inter", sans-serif;
    font-size: 40px;
}

p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.a_links {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    font-size: 2.4vh;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    color: white;

    padding: 15px 30px 15px 30px;

    background-color: #0069B7;
    border-radius: 10px;

    transition: 0.3s;
}

.a_links:hover {
    font-size: 2.4vh;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    color: white;

    padding: 15px 30px 15px 30px;

    background-color: #4CAE51;
    border-radius: 10px;
}


.img_sektion {
    display: flex;
    justify-content: center;
    align-items: start;

    gap: 50px;

    width: 100%;
}

.img_1{
    width: 80%;
}

.img_2{
    width: 60%;
}

.img_3{
    width: 30%;
}

p {
    width: 80%;
}