body{
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(0deg, #8D94DA, rgba(0,0,0,0));
    font-family: Georgia, sans-serif;
}

ul {
    list-style: none;
}

.header-image-container {
    position: relative;
    width: 100%;
    height: 325px;
    overflow: hidden;
}

.header-image-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.8);
    transform: scale(1.1);
}

.header-image {
    position: relative;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    z-index: 1;
    margin: 0 auto;
    display: block;
    top: 50%;
    transform: translateY(-50%);
}

nav {
    position: sticky;
    top: 0;
    margin-top: 0px;
    width: 100%;
    z-index: 10;
}

.nav-bar > li > a {
    color:white;
    text-decoration: none;
    font-size: 20px;
    display: inline-block;
    padding: 10px 20px;
}

nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    background: #13082c;
}

main{
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
}

section {
    width: 80%;
    max-width: 900px;
}