body{
    background-color: hsl(0, 0%, 0%);
    margin: 0px;
}
header{
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
    position: sticky;
    top: 0px;
    background-color: black;
    height: 10vh;
}
main{
    padding: 50px;
    background-color: hsl(0, 0%, 0%);
}
footer{
    margin-top: 100px;

    font-family: MartianMono;
    color: white;
}

/* NAVBAR */
#title{
    color: white;
    float: left;
    font-size: 2em;
}
.navbar{
    text-align: center;
}
.navbar ul{
    list-style-type: none;
    padding-top: 15px;
    margin: 0px;
    display: inline-block;
}
.navbar a{
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
}
.navbar a:hover{
    background-color: hsl(0, 0%, 10%);
}
.navbar a.active{
    text-decoration: underline;
}
.navbar li{
    float: right;
    font-family: MartianMono;
}

/* VIDEO */
.headerVid{
    background-image: url(images/toronto.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0px;

    height: 90vh;
}
#name{
    color: white;
    font-size: 65px;
    font-family: MartianMono;
    
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}
#desc{
    color: white;
    font-size: 40px;
    font-family: MartianMono;

    margin: 0;
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%)
}

/* SHOWS */
.container{
    margin-left: 400px;
    margin-right: 400px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-evenly;
    justify-content:space-evenly;
}
.shows{
    height: 400px;
    width: 275px;
    margin: 10px;
}
#show1{ content: url(images/awakeningthezodiac.jpg); }
#show2{ content: url(images/degrassi.jpg); }
#show3{ content: url(images/goodwitch.jpg); }
#show4{ content: url(images/houseoftherisingsun.jpg); }
#show5{ content: url(images/jettjackson.jpg); }
#show6{ content: url(images/sullivanscrossing.jpg); }
#show7{ content: url(images/24hourrental.jpg); }

.shows:hover{
    height: 500px;
    width: 325px;
}

#viewall{
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 15px;
    position: absolute;
    background-color: black;
    border: 1px solid white;

    left: 50%;
    transform: translate(-50%, -50%)
}
#viewall a{
    text-decoration: none;
    font-size: 30px;
    font-family: MartianMono;
    color: white;
}


/* BIO PAGE */
#title{
    color: white;
    font-family: MartianMono;

    margin: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%)
}
.panel{
    display: flex;
    margin-top: 5%;
}
.portrait{
    content: url(images/markarcieri.jpg);
    width: 25%;
    height: 50%;
    margin-left: 10%;
}
.bio{
    color: white;
    font-family: MartianMono;
}
#bio{
    text-align: left;
    width: 50%;
    height: 50%;
    margin-right: 10%;
    margin-left: 5%;
}

/* FONTS */
@font-face {
    src: url(fonts/MartianMono-VariableFont_wdth,wght.ttf);
    font-family: MartianMono;
}