@font-face { font-family: Prototype; src: url('/static/assets/fonts/Prototype.ttf'); }
@font-face { font-family: Cubic; src: url('/static/assets/fonts/cubic.ttf'); }
@font-face { font-family: BreatheFire; src: url('/static/assets/fonts/Breathe\ Fire\ II.otf'); }
@font-face { font-family: Stonecross; src: url('/static/assets/fonts/stonecross.ttf'); }
@font-face { font-family: infmedia; src: url('/static/assets/fonts/infmedia.ttf'); }

body {
    /* margin: 0px;
    padding: 0px; */
    background-color: #eeeeee;
    font-family: Prototype, sans-serif;
}

#titlebar {
    width: 100%;
    overflow: hidden;
    height: 400px;
    background-color: black;
}

#titlebar h1 {
    position: absolute;
    left: 40px;
    top: 360px;
    color: white;
    z-index: 1;
    font-family: sans-serif;
}

.titlemedia {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  /* max-height: 100%; */
  /* max-height: 800px; */
  z-index: 2;
}

.titlebackground {
  width: 100%;
}

#metacontent {
  margin: 10px;
  font-size: 80%;
  font-style: italic;
}

#content {
  margin: 10px;
}

p {

}

.bodyphoto {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  max-width: 55%;
  max-height: 500px;
  /* display: block; */
  margin-left: auto;
  margin-right: auto;
}

video {
  object-fit: cover;
}

video::-webkit-media-controls-volume-slider {
  display:none;
}

video::-webkit-media-controls-mute-button {
  display:none;
}

/* .bodyphoto:hover {
  max-height: none;
  max-width: none;
  width: 75%;
  height:auto;
  display:block;
  z-index:999;
} */

/* BLOG STUFF */

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}

  /* Create two unequal columns that floats next to each other */
  /* Left column */
.leftcolumn {
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
  margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}

/* OTHER STUFF */

.invis {
	color: rgba(0, 0, 0, 0);
}

.mybox {
	border: 1px solid black;
	width: 400px;
	height: 400px;
}

.codeblock {
  border: 1px solid black;
  counter-reset: pre;
  font-family: monospace;
}

.codeblock pre {

}

.codeblock code {
  counter-increment: line;
}

.codeblock code:before{
  content: counter(line);
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
  padding: 5px;
}

.left {
  left: 0;
  max-width: 50%;
}

.right {
  left: 50%;
  max-width: 50%;
}

.hidden {
  display: none;
}