html {
    font-family: Arial, Helvetica, sans-serif;
}

Body {
    margin: 0;
}

/*-----------------------text og font--------------------*/
h1 {
    font-size: 3em;
    margin: 0;

}

h2 {
    font-size: 2em;
}

p {
    line-height: 1.5;

}

/*----------------layout--------------------------------*/
header {
    background-image: url('../img/banner.jpg');
    height: 15em;
    background-color: black;
}

header nav {
    width: 74em;
    margin: 0 auto;
}

main {
    max-width: 74em;
    margin: 0 auto;
    padding: 4em 0;
}

main img{
    height: 5em;
}
footer {
    height: 5em;

    background-image: url("../img/banner_footer.jpg");
}

footer div {
    max-width: 74em;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*--------------------------navigation----------------*/
nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 3em;
}

nav img {
    margin: 1.25em 0;
}

nav li a {
    font: size 1.25em;
    text-decoration: none;
    color: black;
}

nav li a:hover {
    color: red;
    text-decoration: underline;
}

/*------------------------main content-------------*/
article {
    display: flex;
    justify-content: space-between;
}

article section {
    width: 40%;
}

article figure {
    width: 58%;
    margin: 0;
}

/*-------------------------footer content ------------*/
footer img {
    margin-left: 32px;
}

.content-box {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 20px;

}

.content-box h2 {
    color: darkblue;


}

.content-box p {
    font-size: 16px;
    line-height: 1.6; 

}


.album {
    width: initial;
}

.album h2
{
    text-wrap: nowrap;


}

.album img

{height: 20em;

}

.album-container

{
    gap: 2em;
}

/* .album-info {
    display: grid;
    gap: 20px;
    justify-content: space-around;
    padding: 20px;
}

.album {
    display: grid;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(red, green, blue, alpha);
    text-align: center;
} */