@font-face {
    font-family: "FreePixel";
    src: url(FreePixel.ttf);
}

/* =========================
	Variables
========================= */

:root{
}

/* =========================
	Base / Resets
========================= */

body{
    font-family: FreePixel;
    color: white;
    background-color: black;
    background-attachment: fixed;
    position: absolute;
    height: 100%;
    width: 100%;

}

/* =========================
	Layout
========================= */

header{
}

nav{
    border-style: solid;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    background-color: 006678;
    padding: 10px;
    margin-bottom: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.wrapper{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    align-items: top center;
    width: 100%;
}

.main{
    width: 900px;
    margin-left: 10px;
    margin-right: 10px;
}

.sidebar{
    width: 300px;
}

.box_main{
    display: block;
    background-color: 006678;
    border-style: solid;
    margin-bottom: 10px;
    padding: 10px;
}

.box_side {
    display: block;
    background-color: 006678;
    border-style: solid;
    margin-bottom: 10px;
    padding: 10px;
}

.columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* =========================
	Asthetics
========================= */

ul {
  list-style: none;
  padding: 0;
  margin-left: 5;
  font-size: 15px;
}

.video{
    border-style: solid;
    align-items: center;
}

.video > iframe{
    width: 100%;
    height: 50%;
}

.box_side > img{
    max-width: 100%;
}

.box_main > .box_side{
    margin: 10px;
}

/* =========================
	Other
========================= */

@media screen and (max-width:600px) {
  div.flex-container {
    flex-direction: column;
  }
}