@font-face {
    font-family: Parklane;
    src: url('./fonts/ParkLaneNF.ttf');
}
@font-face {
    font-family: JosefinSans;
    src: url('./fonts/JosefinSans_wght.ttf');
}

body {
    margin: 0;

    display: flex;
    flex-direction: column;
    height: 100vh;

    background-image: url("./background.jpg");
    background-size: cover;
    font-family: JosefinSans;
    background-color: rgb(0,0,0);
    color: #fff;
}
a{
    text-decoration: none;
    color: #fff;
}
h1,h2{
    font-family: Parklane;
}
main{
    flex: 1 0 auto;

}
.hero{
    background-image: url('./hero-background.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 90vh;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}
*{
    box-sizing: border-box;
}
h1, p{
    position: relative;

}
h1 {
    font-size: 5rem;
    font-weight: normal;
}

header{
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    height: 128px;
}
.header-content{
    background-image: url("./header.png");
    background-position: center;
    background-size: auto 128px;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding-top:15px
}
.evb-logo{
    width: 100px;
    display: block;
    margin: 0 auto;
}
.gatsby-title p{
    margin: 0.5rem;
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.75);
    text-align: center;
}
.gatsby-title p:nth-child(2){
    font-size: 8rem;
}
footer{
    flex-shrink: 0;
}
.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    gap: 1rem;
}

#imprint{
    margin: 5rem auto;
    width: 80vw;
    max-width: 800px;
}

#imprint p, li{
    line-height: 1.5rem;
}