body {
    background-color: #0a2b44;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding-top: 50px;
    padding-bottom: 50px; /* Tilføjer afstand i bunden */
    color: #f5f5f5;
    line-height: 1.6;
}

.wrapper {
    display: flex;
    justify-content: center; /* Centrer horisontalt */
    align-items: center; /* Centrer vertikalt */
    width: 100%;
    flex-direction: column;
    row-gap: 20px;
}

/* Main container */
.main-container {
    width: 90%;
    margin: auto auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

/* Titel styling */
.title-of-document h1,
.title-of-section h1 {
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    color: var(--clr-la-yellow, #ffc107);
    margin-bottom: 20px;
}


.title-of-document {
    margin-top: 50px;
}

/* Tekst styling */
.text {
    font-size: 1.2rem;
    text-align: left;
    color: #f5f5f5;
    max-width: 90%;
    margin: auto;
}

/* Lister */
.text ul {
    margin-top: 10px;
}

.text ul li {
    font-size: 1.1rem;
    padding: 5px 0;
    width: 85%;
}

#main-list {
    list-style-type: disc;
    padding-left: 25px;
}

#sub-list {
    list-style-type: circle;
    padding-left: 50px;
}

/* Citat eller vigtige pointer */
.text strong {
    color: var(--clr-la-yellow, #ffc107);
}

/* Punkt container */
.talkingpoints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

/* Hver punkt */
.point {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 70%;
    min-width: 50%;
    transition: transform 0.3s ease-in-out;
}

.point:hover {
    transform: scale(1.05);
}

/* Billede styling */
.image {
    background-image: url(/assets/cover.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
    width: 100%;
}

/* Responsiv styling */

/* For enheder med skærmbredde 960px eller mindre (Tablets) */
@media screen and (max-width: 960px) {
    /* Main container */
    .main-container {
        max-width: 90%;
        padding: 15px;
    }

    /* Titel styling */
    .title-of-document h1,
    .title-of-section h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    /* Tekst styling */
    .text {
        font-size: 1.1rem;
        max-width: 100%;
    }

    /* Lister */
    #main-list li {
        font-size: 1rem;
    }

    #sub-list li {
        font-size: 1rem;
    }

    /* Punkt container */
    .talkingpoints {
        gap: 20px;
    }

    /* Hver punkt */
    .point {
        width: 80%;
        min-width: 45%;
    }

    /* Billede styling */
    .image {
        height: 250px;
    }
}

/* For enheder med skærmbredde 480px eller mindre (Smartphones) */
@media screen and (max-width: 480px) {
    /* Main container */
    .main-container {
        max-width: 95%;
        padding: 10px;
    }

    /* Titel styling */
    .title-of-document h1,
    .title-of-section h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    /* Tekst styling */
    .text {
        font-size: 1rem;
        max-width: 100%;
        margin: 10px auto;
    }

    /* Lister */
    #main-list li {
        font-size: 0.95rem;
    }

    #sub-list li {
        font-size: 0.95rem;
    }

    /* Punkt container */
    .talkingpoints {
        gap: 15px;
    }

    /* Hver punkt */
    .point {
        width: 90%;
        min-width: 100%;
        flex-direction: column; /* Justere punkterne til at være lodret */
        padding: 10px;
    }

    /* Billede styling */
    .image {
        height: 200px;
    }

    /* Download links */
    #download-list {
        padding-left: 20px;
    }

    .download a {
        font-size: 1rem;
    }

    #link-list {
        padding-left: 20px;
    }
    
    .link a {
        font-size: 1rem;
    }   
}


#download-list {
    list-style-type: none;
    padding-left: 40px;
}

.download a {
    color: var(--clr-la-yellow, #ffc107);
    text-decoration: none;
}

#link-list {
    list-style-type: none;
    padding-left: 40px;
}

.links a {
    color: var(--clr-la-yellow, #ffc107);
    text-decoration: none;
}

.links {
    padding-bottom: 20px;
}

/* Footer styling */
.footer {
    background-color: #0a2b44;
    color: #f5f5f5;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}