/* CSS stylesheet for index.html */

html, body{
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* background video */
.bg-video {
    z-index: -10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* background overlay */ 
.overlay {
    z-index: -10;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* content styling */
  main {
    flex: 1;
    margin: 8px;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 5vh;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    
    /* Previously in #bouncer */
    position: absolute;
    padding: 0;
    overflow: hidden;
    width: 600px;
    text-shadow: 0px 0px 15px white;
}

main h1 {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 400%;
    line-height: 1;
}

main p {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 200%;
    line-height: 1;
}

/* navigation bar styling */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2;
}

header ul{
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    background-color: rgba(0, 0, 0, .9);
}

header ul li {
    float: left;
}

header ul li a {
    display: block;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

header ul li a:hover {
    background-color: rgba(255, 255, 255, .1);
}

/* header theme select styling */
header ul li button {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 100%;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border: 0px;
    color: white;
    background-color: rgba(0, 0, 0, 0);
}

header ul li button:hover {
    background-color: rgba(255, 255, 255, .1);
}


/* footer styling */
footer {
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

footer ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 1;
    list-style: none;
    background-color: rgba(0, 0, 0, .9);
}

footer li {
    float: left;
}

footer li a {
    display: block;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

footer li a:hover{
    background-color: rgba(255, 255, 255, .1);
}

footer p {
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-align: center;
    margin: 0;   /* Reset any extra margin */
    padding: 14px 16px;
}