*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

nav ul, nav li {
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style-type: none;
}

h1, h2, h3, h4, h5 {
  font-family: "NT Mikella", sans-serif;
}

.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

html {
  scroll-behavior: smooth;
}

body, html {
  height: auto;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

body {
  background-color: #EEE;
}

p {
  font-family: "Jost", sans-serif;
  line-height: 1.2em;
}

a {
  color: inherit;
  text-decoration: inherit;
}

section {
  margin: 0;
  padding: 0;
}

section.about {
  background-color: #000;
  color: white;
  padding: 125px 30px;
  text-align: center;
}
section.about .content {
  text-align: left;
  display: inline-block;
  max-width: 800px;
}
section.about h1 {
  font-size: 36px;
  color: #555;
  text-align: center;
}
section.about h2 {
  font-size: 28px;
  color: #DDD;
}
section.about p {
  font-size: 20px;
  color: #AAA;
}

.announcement {
  background-color: #2eff6c;
  text-align: center;
  font-family: "Jost", sans-serif;
  padding: 20px 30px;
  font-size: 1.2em;
  border-bottom: 2px solid #555;
}
.announcement a {
  text-decoration: underline;
  color: blue;
}

nav {
  user-select: none;
}
nav li {
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s ease;
}
nav li:hover {
  color: #f3b860;
  text-shadow: 0 0 50px #ad6d0d;
}

.wordmark {
  height: 100px;
  width: 500px;
  background-image: url(../img/wordmark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0% 50%;
}

section.header {
  border-top: 15px solid #111;
  border-bottom: 5px solid #333;
  background-image: url(../img/splash.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: auto;
  background-position: center;
  background-color: white;
}
section.header .wordmark {
  float: left;
  margin-top: 2.5em;
}
section.header nav {
  float: right;
  text-align: right;
  font-size: 28px;
  font-family: "NT Mikella", sans-serif;
}
section.header nav .eventcode {
  font-family: "Jost", sans-serif;
  color: #ffd391;
  font-size: 18px;
  padding: 0.5em 0;
}
section.header nav .eventcode:hover {
  text-decoration: underline;
}
section.header .content {
  margin: 60px 0;
  padding: 100px 60px;
  background-color: #0b0b0b;
  color: white;
  overflow: auto;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}

section.content {
  border-bottom: 30px solid #111;
}
section.content h1 {
  padding: 30px 60px 20px 60px;
  background-color: #CCC;
  color: #222;
  font-size: 32px;
  text-shadow: 0 0 30px white;
}

section.contact {
  background-color: #111;
  text-align: center;
  border-bottom: 30px solid black;
  padding: 100px 0;
}
section.contact h1 {
  color: white;
  font-size: 2em;
}
section.contact iframe {
  width: 100%;
  padding: 0 30px;
  max-width: 700px;
}

#works .item {
  display: flex;
  align-items: stretch;
  background-color: #FFF;
}
#works .item .image {
  width: 50vw;
  height: 400px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
#works .item .image img {
  max-height: 100%;
  cursor: zoom-in;
}
#works .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

#works .item {
  margin-top: 20px;
  padding: 50px 0;
}

#works .item:nth-child(2n) {
  flex-direction: row-reverse;
}
#works .item:nth-child(2n) .image {
  flex-direction: row;
}

.info {
  font-family: "Jost", sans-serif;
  max-width: 30vw;
}
.info .title {
  line-height: 1em;
  display: inline-block;
  padding-right: 0.25em;
  font-size: 2em;
}
.info .date {
  font-size: 1.2em;
  color: #555;
}
.info .desc {
  font-size: 1.2em;
}
.info .price {
  font-family: "Victor Mono", monospace;
  font-size: 1.4em;
  color: #222;
}
.info .price .discounted {
  text-decoration: line-through;
  color: #777;
}
.info .price .discount {
  padding-left: 0.1em;
}

table.details {
  padding: 10px 0px;
  margin: 0;
}
table.details tr {
  line-height: 1em;
}
table.details tr td {
  padding: 3px 0;
}
table.details tr td:first-child {
  vertical-align: top;
  width: 60px;
  text-transform: uppercase;
  font-weight: 500;
  color: #444;
  font-size: 0.8em;
}
table.details tr td:last-child {
  font-size: 1.15em;
  color: #555;
}