﻿* {
    --bg-primary: black;
    --bg-secondary: rgb(53, 53, 53);
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg-secondary);
    margin: 0;
}


.logo {
    height: 40%;
    background-color: var(--bg-primary);
    z-index: 20;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: auto;
    height: 100%;
}

.navigation {
    position: sticky;
    top: 0;
    text-align: center;
    background-color: var(--bg-primary);
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 20;
}

.navigation a {
    color: bisque;
    padding: 10px;
    text-decoration: none;
    font-size: 35px;
}

.navigation a:hover {
    color: grey;
}

footer {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    background-color: black;
    z-index: 20;
}

footer * {
    z-index: 20;
}

.link a {
    color: bisque;
    text-decoration: none;
    margin: 20px;
}

.link a:hover {
    color: grey;
}

main {
    background-color: rgba(216, 216, 216, 0.8);
    background-image: url('assets/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: saturation;
}

main img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

section {
    text-align: left;
    margin: auto;
    margin-bottom: 6vh;
}

p{
    line-height: 1.5;
}