body {
  margin: 0;
  padding: 0;
  background-color: #121212;
  font-family: 'Simply Mono';
}
h1, h2, h3 {
  margin: 0;
  margin-bottom: 1rem;
  text-align: center;
}
h3.vid-header {
  margin-top: 1rem;
}
h3.clog-entry {
  text-align: left;
  margin: 0;
}
p.subtext-small {
  margin: 0;
  margin-bottom: 1rem;
  color: gray;
  text-align: center;
  font-size: smaller;
  font-style: italic;
}
p.clog-text {
  margin-top: 0;
}
a {
  color: #0069DB;
  transition: 0.3s;
}
a:hover {
  color: #ffc000;
}

/* TABLES */
table.nav-links {
  padding: 0;
  padding-left: 1.25em;
  padding-right: 1.25em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: black;
}
table.social-links {
  margin-left: auto;
  margin-right: auto;
}
table.info {
  border: 1px solid gray;
  border-collapse: collapse;
}
.info th, td {
  text-align: left;
  border: 1px solid gray;
  border-collapse: collapse;
  padding: 10px;
}
.info td {
  font-style: italic;
  width: 80%;
}
th { 
  padding: 10px;
}

/* STRUCTURE */
.bg {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    position: fixed;
    opacity: 1;

    background-image: url("assets/bg.png");
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.container {
    width: 60rem;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: white;
}
.content {
  margin: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  border-style: double;
  border-color: white;
  background-color: #121212;
  background-blend-mode: screen;
}
.nav-container {
  display: block;
  margin: 0;
  margin-bottom: 1rem;
  justify-content: center;
  background-image: url('assets/hazard.png');
  background-size: cover;
  background-position: center center;
}
.nav-works {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.divider {
  border-bottom-style: dotted;
  border-color: gray;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* MEDIA */
img {
  margin: 0;
  margin-bottom: 1rem;
}
.imgcenter {
  display: block;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  max-width: 60%;
}
.vid-wrapper {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 60%;
  overflow: hidden;
}
.vid-wrapper video {
  max-width: 100%;
}

/* CUSTOM FONTS */
@font-face {
  font-family: 'Simply Mono';
  src: url('assets/fonts/SimplyMono-Book.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Simply Mono';
  src: url('assets/fonts/SimplyMono-BookOblique.ttf');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Simply Mono';
  src: url('assets/fonts/SimplyMono-Bold.ttf');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Simply Mono';
  src: url('assets/fonts/SimplyMono-BoldOblique.ttf');
  font-weight: bold;
  font-style: italic;
}

/* from the internet blink exchange */
blink {
  animation: blinker 0.6s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}