.top-banner {
    width: 80%;
    padding: 3vh 2vw;
    background-color: var(--nipponGrey);
    display: grid;
    grid-template-columns: 1fr min-content min-content min-content 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(12, min-content);
    margin: 2vw 0;

    & img {
        grid-area: 1 / 1 / 13 / 9; /* Dette får billedet til at fylde hele grid'et */
        width: 100%;
    }

    & .nippon-scraper {
        grid-area: 4 / 3 / 4 / 3; /* Dette placerer teksten oven på det tidligere nævnte billede */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        font-family: "electroharmonix";
        color: white;
        font-size: 3vw;

        & p {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem 3vw;
        }
        & .p:nth-of-type(1) { grid-area: 1 / 1 / 2 / 2; }
        & .p:nth-of-type(2) { grid-area: 1 / 2 / 2 / 3; }
        & .p:nth-of-type(3) { grid-area: 2 / 1 / 3 / 2; }
        & .p:nth-of-type(4) { grid-area: 2 / 2 / 3 / 3; }
        & .p:nth-of-type(5) { grid-area: 3 / 1 / 4 / 2; }
        & .p:nth-of-type(6) { grid-area: 3 / 2 / 4 / 3; }
    }

    & .ugens-menu {
        grid-area: 6 / 2 / 7 / 5;
        position: inherit;
        font-family: "nuku nuku";
        color: white;
        font-size: 2.5vw;
        background-color: var(--nipponRed);
        min-width: max-content;
        padding: 1vh 1vw;
    }

}

.mid-section {
    background-color: var(--nipponGrey);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    min-height: min-content;

    & article {
        width: 50%;
        padding: 2vh 5vw 2vh 2.5vw;
        line-height: 2.5;

        & h4 {
            font-family: "Nuku Nuku";
            font-size: 2vw;
            margin-bottom: 0.25vh;
            color: var(--nipponRed);
            letter-spacing: 0.2vw;
        }

        & p {
            font-size: 1vw;
        }
    }

    & img {
        border-radius: 0.5vw;
        width: 50%;
        margin: 2.5vh 2vw 2.5vh 2.5vw;
    }
}

.bot-section {
    display: flex;
    flex-direction: row;
    width: 80%;
    min-height: min-content;
    margin: 2vw;

    & article {
        display: flex;
        flex-direction: column;
        width: 50%;
        padding: 2.5vh 3vw;
        background-color: var(--nipponGrey);
        
        & h4 {
            font-family: "Nuku Nuku";
            font-size: 1.75vw;
            margin-bottom: 0.25vh;
            color: var(--nipponRed);
            letter-spacing: 0.2vw;
            align-self: center;
            cursor: pointer;
        }
    }
    
    & img {
        cursor: pointer;
        width: auto;
        margin-bottom: 1rem;
    }
}
