body {
    background-image: url("/data/pictures/img_4171.jpg");
    background-size: cover;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
}

banner {
    display: flex;
    justify-content: space-between;
    height: 100px;
}

banner > h1 {
    padding: 5px;
    text-align: center;
    font-family: 'Edu NSW ACT Foundation', cursive;
    font-size: 4rem;
    margin: auto;
}

#index-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
}

#indexHref:hover {
    color: black;
}

#indexHref {
    color: white;
}

#intro-text-container {
    color: white;
    width: 80vw;
    height: 45vh;
    left: 10vw;
    top: 5vh;
    margin: auto auto;
    overflow-y: auto;
    line-height: var(--default-line-height);
}

/*
  Need to explicitly set an initial height and width
  for this id so I can manipulate the style.width
  property via setAttribute to keep typescript happy.
*/

#intro-text-cover {
    position: absolute;
    z-index: -10;
    background-color: black;
    opacity: 0.6;
    border: .5vh solid #8e7474;
    border-radius: 3vh;
    left: 10vw;
    width: 80vw;
    height: 45vh;
}  
  
#intro-text-container > h1 {
    text-align: center;
    padding: 15px 0 15px 0;
    font-family: 'Unna', serif;
    font-size: 250%;
}

#intro-text-container > p {
    padding: 0 15px 0 15px;
    text-indent: 10px;
}

footer {
    height: auto;
    background-color: black;
    color: white;
    opacity: .9;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}
