@import 'https://fonts.googleapis.com/css?family=Fira+Sans';

* {
    box-sizing: border-box;
}

header {
    background-color: #263d36;
    background-image: url("../images/header.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10vw 2rem;
    text-align: center;
}

header a {
    border: 1px solid rgb(44,82,91);
    border-radius: 1rem;
    padding: 0.1rem 1.5rem;
    text-transform: uppercase;
    transition: none 200ms ease-out;
    transition-property: color, background;
    
}

header a:hover {
    background: rgb(44,82,91);
    color: #eeeeee;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans',"Arial", "Helvetica", sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    background: #f6f6f6;
    color: #284557;
}

main {
    margin: 0 auto;
    max-width: 45rem;
    padding: 1rem 1rem;    
}

#thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.vid {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

#thumbnails video {
    border: 1px solid black;
}

h2 {
    margin-top: 1rem;
    padding-top: 1rem;
}
h1,
h2,
strong {
    color: #212121;
}

a {
    color: rgb(44,82,91);
}
