html,
body {
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0C3F38;
}

body {
    margin: 0;
}

.flex-wrapper {
    display: flex;
    flex-direction: column;
}

.nowplaying {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    background-color: #134c40;
    color: white;
    font-size: large;
    font-variant: small-caps;
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #134c40;
    color: white;
    font-size: larger;
    font-variant: small-caps;
    padding: 10px 50px;
}

#navlinks label {
    padding: 0 20px;
    
}

#navlinks a {
    border: none;
    text-decoration-line: none;
    color: inherit;
}

#brand {
    color: white;
}

#navselected {
    border: none;
    text-decoration-thickness: 5px;
    text-decoration-line: overline;
    color: #2cead0;
}

.hero {
    background-color: black;
    color: white;
}

.hero video {
    cursor: cell;
}

.overlayText {
    position: absolute;
    top: 30%;
    left: 10%;
    z-index: 1;
}

#topText {
    color: white;
    font-size: 20px;
    align-self: center;
    font-variant: small-caps;
}

#hero-button {
    color: white;
    background-color: #134c40;
    padding: 15px;
    border: solid;
    font-variant: small-caps;
    font-style: bold;
}

#hero-title {
    color: white;
    background-color: black;
    padding: 15px;
    border: solid;
    font-variant: small-caps;
    font-style: bold;
}

#hero-subtitle {
    color: white;
    font-style: italic;
    font-weight: lighter;
}