/* Timothy George Kelly — simple black & white site */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
  text-transform: lowercase;
}

a {
  color: #000;
}

a:hover, a:focus {
  color: #777;
}

.wrap {
  max-width: 480px;
  margin: 0;
  padding: 0 24px;
}

header {
  padding: 20px 0;
}

header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
}

.site-title {
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

nav a {
  text-decoration: none;
  font-size: 13px;
}

nav a.current {
  text-decoration: underline;
}

main {
  padding: 8px 0 40px;
  position: relative;
}

main .wrap {
  max-width: 420px;
}

p.bio {
  font-size: 13px;
  line-height: 1.6;
}

h1.page-title {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 20px;
}

.work-item {
  margin: 0 0 32px;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  margin-bottom: 8px;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.work-title {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 2px;
}

.work-sub {
  font-size: 13px;
  margin: 0;
}

.theatre-text p {
  font-size: 13px;
}

.theatre-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
  max-width: 480px;
}

.theatre-images img {
  width: 100%;
  height: auto;
  display: block;
}

footer {
  padding: 16px 0 24px;
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
}

footer a {
  text-decoration: none;
}

#snake-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: #fff;
  display: block;
}
