/** --------------------------------- Header ----------------------------------------*/

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #0E8CCC;
    padding: 1rem;
    z-index: 100;
    box-shadow: 1px 0.5px 20px #00000025;
}

header .ifg-logo {
    width: 6rem;
    filter: brightness(50);
}

header nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

header nav a {
    text-decoration: none;
    color: white;
    transition: 0.4s;
}

header nav a:hover {
    opacity: 0.7;
}

header nav .background-btn {
    background-color: white;
    color: #0E8CCC;
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.menu-btn {
    display: none;
}

/** --------------------------------- Profil ----------------------------------------*/

body {
    background: linear-gradient(#0E8CCC94, #0e8dcc94), url(https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-attachment: fixed;
}

main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

main h1 {
    margin-bottom: 2rem;
    color: #0E8CCC;
    font-size: 1.5em;
}

main .main-body {
    width: 1024px;
    max-width: 100%;
    padding: 1rem;
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 8rem;
    background-color: white;
}

main .main-body .link {
    background: transparent;
    color: darkblue;
    border: none;
    padding: 0rem;
    text-decoration: underline;
}

main .main-body .divider-empty {
    padding: 1rem;
}