:root {
    --main-color : rgb(239, 239, 239); 
    --main-color-hover : rgb(212, 212, 212);
}

body {
    min-height: 1080px;
    background-color: black;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}
/* -- */

header {
    z-index: 1;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

nav li {
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: var(--main-color);
    background-color: rgba(0, 0, 0, 0.3);
}

nav a {
    text-decoration: none;
    color: var(--main-color);
}

nav a:hover,nav a:active {
    color: var(--main-color-hover);
}

nav {
    position: fixed;
    width: 100%;
    padding-bottom: 80px;
}

header h1 {
    margin: 0;
    padding-top: 180px;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: var(--main-color);

}

header p {
    margin: 0;
    padding-top: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
}

/* -- */

main {
    padding-top: 50px;
    padding-bottom: 40px;
    z-index: 1;
    color: var(--main-color);
}
/* -- */

footer {
    width: 100%;
    padding-top: 40px;
    background-color: rgb(214, 214, 214);
    padding-bottom: 40px;
    z-index: 1;
}

#footer-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

#footer-content h3 {
    font-size: 30px;
    font-weight: bold;
    color: black;
    margin: 0;
    padding-bottom: 20px;
}

#footer-content div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 400px;
    margin: auto;
}

#footer-content div p {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

#footer-content div a {
    text-decoration: none;
    color: black;
}