@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --red: #9D382B;
    --grey: #333;
    --saira: "Saira Condensed", Helvetica, Arial, sans-serif;
    --kanit: "Kanit", Helvetica, Arial, sans-serif;
}

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

body{
    overflow-x: hidden;
    width: 100vw;
    height: auto;
    background-color: white;
}

header,
main,
footer,
aside{
    margin: 0 auto; 
    height: auto; 
    font-family: var(--kanit);
}

header,
footer{
    background-color: var(--grey);
}

header{
    width: 100%;
    display: grid;
}

main,
footer{
    width: 1000px;
    margin: 0 auto;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; 
}

a{
    text-decoration: none;
    color: black; 
    cursor: pointer;
    font-family: var(--saira);
}

a:hover{
    color: var(--red);
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
    font-family: var(--kanit);
}

h2{
    font-size: 1.5rem;
}

h3{
    font-size: 1.25rem;
}

p{
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    font-family: var(--saira);
}

button{
    border: none;
    outline: none;
    cursor: pointer;
}

ul{
    list-style: none;
    display: flex;
    flex-direction: row;
}

/* end of boilerplate-ish-stuff */

header>img{
    grid-area: 1/1/-1/-1;
    height: 50vh;
    width: 100vw;
    object-position: 0 -200px;
}

header .overlay{
    grid-area: 1/1/-1/-1;
    background-color: black;
    opacity: 35%;
    width: 100vw;
    height: 50vh;
}

header nav{
    grid-area: 1/1/-1/-1;
    z-index: 10;
    background-color: var(--grey);
    align-self: start;
}

header nav ul{
    width: 1000px;
    margin: 0 auto;
    padding: 0.5rem 0;
    justify-content: space-between;
}

header nav img{
    width: 200px;
    height: auto;
    margin-right: 10rem;
}

header nav a{
    color: white;
    font-weight: 300;
}

header h1{
    grid-area: 1/1/-1/-1;
    z-index: 10;
    color: white;
    font-size: 3.5rem;
    width: 1000px;
    margin: 0 auto;
    line-height: 3.3rem;
    font-weight: 500;
    align-self: end;
    padding-bottom: 2rem;
}

main article{
    margin-top: 2rem;
}

main .intro{
    display: grid;
    grid-template-columns: 50% 2rem 50%;
}

main .intro p{
    grid-area: 1/1/2/2;
    align-self: center;
    text-align: justify;
}

main .intro img{
    grid-area: 1/3/2/4;
    width: calc(500px - 2rem);
    height: auto;
}

main .line{
    width: 100%;
    height: 1px;
    background-color: black;
}

main .events{
    display: grid;
    grid-gap: 2rem 0;
}

main .events>div:nth-of-type(odd){
    display: grid;
    grid-template-columns: 45% 55%;
}

main .events>div:nth-of-type(even){
    display: grid;
    grid-template-columns: 55% 45%;
}

main .events .box{
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: grid;
    height: 35vh;
}

main .events .lille{
    grid-template-columns: 30% 70%;
}

main .events .stor{
    grid-template-columns: 40% 60%;
}
main .events .box:nth-of-type(odd){
    margin-right: 2rem;
}

main .events .box .text{
    margin: 0.5rem 1rem 0.5rem 1.5rem;
    display: grid;
    grid-template-rows: 50% 50%;
}

main .events .box .text div{
    display: grid;
}

main .events h2{
    line-height: 1.8rem;
    align-self: flex-end;
}

main .events .box p{
    font-size: 0.8rem;
}

main .events .box p:last-of-type{
    align-self: flex-end;
}

main .events img{
    height: 100%;
    object-fit: cover;
}

main .oplevelser{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 2.5rem;
}

main .oplevelser p{
    text-align: justify;
}

main .oplevelser a{
    text-decoration: underline;
    font-weight: bold;
}

main .oplevelser section:first-of-type{
    column-count: 2;
    column-gap: 2rem;
}

main .oplevelser img{
    width: 85%;
    text-align: center;
    display: inline;
    margin: 1rem 1rem 0 1.5rem
}

footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 250px;
    padding: 2rem 3rem;
    border-top: 4px solid var(--red);
    margin-top: 3rem;
}

footer p{
    color: white;
    line-height: 1.5rem;
}

footer p strong{
    letter-spacing: 0.05rem;
}

footer section{
    width: 180px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-self: end;
}

footer section img{
    height: 30px;
    justify-self: center;
}

footer section img:first-of-type{
    margin-right: -1.5rem;
}