* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: black;
    color: #FFF;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 77, 77, 0);
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo-name {
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: white;
    font-family: "Nunito Sans";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.navbar a {
    text-decoration: none;
    margin-left: 25px;
    color: #FFF;
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.8px;
text-transform: uppercase;
padding: 0.5vh 0.6vh;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #292929;
    min-width: 0.1vh;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 99;
    left: 10%;
    top: 100%;
    right: 0;
    border-radius: 20px;
}


.dropdown:hover .dropdown-content {
    display: block;
    text-align: center;
    align-items: center;
}

.dropdown-content a {
    color: rgb(255, 255, 255);
    padding-top: 1vh;
    text-decoration: none;
    display: block;
    text-align: left;
    margin-right: 4%;

}


.navbar a:hover {
    text-decoration: underline; 
}

.navbar a.subscribe:hover {
    color: black;
    transform: none;
    background-color: white;
    text-decoration: none;
}

.subscribe {
    padding: 1px 10px;
align-items: center;
border-radius: 25px;
border: 1px solid #FFF;
}

.navbar-logo {
    width: 25px;
    height: 22.725px;
}

.hero-image {
    background-image: url("/Compressed-images/hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 0px 0px 150px 100px;
    width: 100%;
    display: block;
    height: 100vh;
}

.hero-text {
    color: #FFF;
font-family: "Nunito Sans";
font-size: 3.5vw;
font-style: normal;
font-weight: 500;
line-height: 1.2;
letter-spacing: -0.1em;
max-width: 60%;
margin-top: 30vh;
margin-left: 5vw;
position: relative;
animation: fly-in 1s ease-out forwards; 
}

@keyframes fly-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0); 
        opacity: 1;
    }
}

.card-header {
    color: #FFF;
font-family: Archivo;
font-size: 2vw;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.1125rem;
max-width: 25%;
margin-left: 5vw;
margin-top: 84px;
overflow: hidden;
}

.card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.1);
}

.card-container {
    display: flex;
    gap: 2vw;
    justify-content: center;
    margin: 2rem 5vw;
    max-width: 100%;

}

.card-container img {
    width: 100%;
}

.article-header {
    color: #FFF;
    font-family: Archivo;
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.54px;
    align-self: stretch;
    width: 380px;
}

.article-cat {
    padding: 3px 10px;
    align-items: center;
    border-radius: 40px;
background: #EDEBDD;
color: #000;

font-family: Archivo;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.8px;
}

.article-text {
    display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
align-self: stretch;
margin-bottom: 100px;
}

.article-aut {
    color: #FFF;
font-family: Archivo;
font-size: 16px;
font-style: italic;
font-weight: 300;
line-height: normal;
letter-spacing: -0.8px;
}

#midter-billede {
   background-image: url("/Compressed-images/midter-billede.webp");
   background-size: cover;
   background-position: center;
   height: 60vh;
}

.nyhedsbrev-container {
    display: flex;
    justify-content: center;
    padding: 100px 0px;
    margin: 0px 10vw;
}

.nyhedsbrev-container img {
    max-width: 100%; /* Allow the image to shrink */
    height: auto; /* Maintain aspect ratio */
}

.footer-container-pictures {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px 62px;
}

.copyright {
    display: inline-flex;
align-items: flex-start;
gap: 20px;
padding: 10px 62px;
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.copyright a {
    text-decoration: none;
    color: white;
}

.footer-text-container {
    display: flex;
    justify-content: space-between;
}

.socials {
    display: flex;
gap: 20px;
padding: 10px 62px;
}

.socials a {
    text-decoration: none;
    color: #FFF;
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-decoration-line: underline;
}
