/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  color: #aaaaaa;
  background-color: #000000;
  font-family: 'Courier New', Courier, monospace;
  font-size: x-large;
}

a {
  color: #ff4500;
}

a:visited {
  color: #aa4500;
}

p {
  margin-top: 1rem;
  font-size: x-large;
}

header.banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('images/Banner.png');
  background-position: right bottom;
  background-size: cover;
  border-bottom: 1px solid #ff4500;
  height: 475px;
  padding: 0.5rem;
}

.link-container {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  border-radius: 200px;
  border: 1px solid white;
  width: 50px;
  height: 50px;
  margin: 10px;
}

.site-icon {
  max-width: 50px;
}

.site-icon.half {
  max-width: 25px;
}

section.links > ul {
  display: flex;
  flex-direction: column;
}

section.info {
  margin-left: 0.75rem;
  margin-top: 1rem;
  text-shadow: 1px 1px 2px black;
}

.desktop-only-content {
  display: none;
}

article.title {
  margin-top: 1rem;
  font-weight: 800;
  font-size: xx-large;
}

article.bio {
  font-weight: 800;
  margin-top: 1rem;
}

article.work {
  font-weight: 800;
  font-size: large;
  margin-top: 1rem;
}

section#dai-art-credit {
  display: flex;
  justify-content: right;
  font-size: medium;
  padding-bottom: 5px;
}

@media (min-width: 780px) {
  .mobile-only-content {
    display: none;
  }

  .desktop-only-content {
    display: block;
  }

  section.links > ul {
    flex-direction: row;
  }
}
