/* base bg and color */

* {
  box-sizing: border-box;
}

body {
	max-width: 960px;
	margin: 1em auto 1em auto;
	background: url(/portfolio/imgs/sitebg.png);
	background-size: 100% 100%;
	background-attachment: fixed;
}

.main {
  background: black;
  border: 7px double white;
  padding: 1em;
}

:root {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}


/* Very similar to h1 but with less margins */

.header {
  display: block;
  font-size: 2em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: .1em;
}

/* get outta here!!!!!! */

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin-block: inherit;
  display: inherit;
}

hr {
 color: white; 
}

.subtitle {
  color: #999;
  font-size: .75rem;
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.underline {
  text-decoration: underline;
  color: #bbb;
}

/*================
=====CAPSULES=====
================*/

.capsuleimg {
  width: 100px;
  height: 100px;
  border-radius: 0.5em;
  border: 2px solid white;
  margin: -2px;
  cursor: pointer;
}

.capsuleimg img {
  width: 100%;
  height: 100%;
  border-radius: 0.35em;
  pointer-events: none;
  user-select: none;
}

.capsule {
  display: flex;
  border: 2px solid white;
  border-radius: .5em;
  overflow: hidden;
}

.capsulecontent {
  margin-left: .5em;
  margin-right: .5em;
  margin-top: .25em;
  flex: 1;
}

.capsulecontent * {
  line-height: 15px;
}

.capsuleheader {
  font-weight: bold;
}

.capsuleinfobutton a, .goback a {
  font-size: .75rem;
  font-weight: bold;
  color: #FFD73C;
  cursor: pointer;
}