*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
p {
  margin: 0;
}
p + p {
  margin-top: 1rem;
}
form {
  margin: 0;
  padding: 0;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: 16px;
}
input[type="text"],
input[type="password"],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: .25rem;
  outline: none;
  padding: .25rem;
}
input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: #09c;
}
input[type="text"].long,
input[type="password"].long,
select.long,
textarea.long {
  width: 100%;
}
input[type="text"].short,
input[type="password"].short,
select.short,
textarea.short {
  width: 5rem;
}
textarea {
  vertical-align: top;
  resize: none;
}
button {
  display: inline-block;
  outline: none;
  border: 1px solid #09c;
  border-radius: .25rem;
  background-color: #fff;
  margin: 0;
  padding: .5rem 2rem;
  color: #09c;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
button:active {
  transform: translateY(1px);
}
button[disabled],
button[disabled="disabled"] {
  opacity: .5;
  cursor: default;
}
button.primary {
  background-color: #09c;
  font-weight: bold;
  color: #fff;
}
button.mini {
  padding: .25rem 1rem;
  font-size: .75rem;
}
button.invisible {
  visibility: hidden;
}
.hidden {
  display: none !important;
}
html {
  font-family: sans-serif;
}
body {
  background-color: #fff;
  color: #555;
}
header,
main,
footer,
nav {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 2rem;
}
header > h1 {
  width: 10rem;
  height: 10rem;
  overflow: hidden;
  margin: 0 auto;
  background-image: url("../img/logo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
}
header > p {
  display: none;
  padding-top: 2rem;
  text-align: center;
  font-size: .75rem;
}
footer > p {
  text-align: center;
  font-size: .75rem;
}
nav {
  display: none;
}
nav > ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav > ul > li {
  margin: 0;
  padding: 0;
  color: #ccc;
}
nav > ul > li::after {
  content: "|";
  margin: 0 .5rem;
}
nav > ul > li:last-child::after {
  content: none;
}
section + section {
  margin-top: 2rem;
}
section > h2 {
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
}
a {
  color: #09c;
}
.work {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  padding-bottom: 1rem;
}
.work-list {
  column-count: 3;
  column-gap: 2rem;
}
.work-empty {
  padding: 10rem 0;
}
.work-empty > p {
  text-align: center;
}
.work-image > img {
  display: block;
  width: 100%;
  height: auto;
}
.work-description {
  padding: 1rem 0;
}
.work-description > p {
  text-align: center;
  font-size: .75rem;
}
#about {
  display: none;
}
#about > p {
  margin: 0 auto;
  max-width: 480px;
}
#contact > form {
  margin: 0 auto;
  max-width: 480px;
  text-align: center;
}
#contact > form > input,
#contact > form textarea {
  display: block;
  margin: .5rem auto 0 auto;
  width: 100%;
  text-align: left;
}
#contact > form > button {
  margin-top: .5rem;
}
#rcs {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
#rcs > a {
  display: block;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  background-color: rgba(0, 153, 204, 0.5);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 3rem;
  font-size: 1.25rem;
}
#rcs > a + a {
  margin-top: .5rem;
}
#blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 800px) {
  header,
  main,
  footer,
  nav {
    padding: 2rem;
  }
  .work-list {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  header,
  main,
  footer,
  nav {
    padding: 2rem 1rem;
  }
  .work-list {
    column-count: 1;
  }
}
/*# sourceMappingURL=index.css.map */