
#nav-bar{
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px 0;
    font-size: 20px;
    border-bottom: 1px solid var(--bg-border-color);
    z-index: 99 !important; /* So the elements with the wiggly effect aren't rendered on top of the nav bar */
}

.nav-links{
    display: flex;
    list-style: none;
}

.nav-link{
    text-decoration: none;
    padding: 0 30px;
    color: var(--title-color);
    animation: none;
    transition: all 0.1s;
}

.nav-link:hover{
    text-decoration: none;
    animation: squiggly-small-anim 0.2s infinite;
    color: var(--title-hover-color);
}

section{
    min-height: 100vh;
    padding: 0 0;
}

#welcome {
    display: flex;
    flex-direction: column;
}

#background_video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: -1;
}

#welcome h1 {
    margin-top: 45vh;
    text-shadow: 4px 4px 4px black;
}

#welcome p {
    margin: 15px 0;
    text-shadow: 2px 2px 2px black;
}

#contact {
    display: flex;
    flex-direction: column;
}

#contact h1 {
    margin-top: 30px;
}

#contact p {
    margin: 15px 0;
}

#footer {
    margin-bottom: 32px;
}

#footer p {
    font-size: 15px;
}