/*hand-coded by an IDIOT!!*/


@font-face {
	font-family: "terminal"; 
	src: url("terminal-grotesque_open.otf") format("opentype");
}

body {
  background: black;
  padding: 10px;
  color: white;
}

* {
  image-rendering: pixelated;
  box-sizing: border-box;
}

.container {
  display: flex;
  border: 6px double #acacac;
  border-radius: 30px;
  max-width: 55rem;
  height: auto;
  padding: 10px;
  margin: 5vw auto 12px auto;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Richard_Nixon_presidential_portrait_%281%29.jpg/960px-Richard_Nixon_presidential_portrait_%281%29.jpg');
  gap: 5px;
  font-family: "terminal";
}

header {
  border: 2px solid #acacac;
  border-radius: 25px;
  width: 100%;
  height: 120px;
  background-image: url('https://trumpwhitehouse.archives.gov/wp-content/uploads/2017/12/37_richard_m_nixon.jpg');
  padding: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 5px;
}

header span {
  font-family: 'terminal';
  font-size: 2.5rem;
  color: white;
  text-shadow: 1px 1px magenta, 1px -1px cyan, -1px -1px magenta, -1px 1px cyan;
  bottom: 0px;
  right: 10px;
  margin: 10px;
}

section {
	border: 2px solid #acacac;
  border-radius: 25px;
  width: 100%;
  height: 120px;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Richard_Nixon_presidential_portrait_%281%29.jpg/960px-Richard_Nixon_presidential_portrait_%281%29.jpg');
  padding: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 5px;
}


/*box sizes do NOT touch you will break everything*/
.small { flex: 1 1 9%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 49%; }

