@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cousine&display=swap");
iframe, img {
  background-color: #505050;
}

.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-wrapper .main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  max-width: 360px;
}

nav {
  position: fixed;
  z-index: 21;
  margin: -58px 0 0 0;
  pointer-events: none;
}
nav .menu-items {
  pointer-events: all;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  transform: translate(100%);
  transition: transform 0.5s ease-in-out;
}
nav .menu-items .nav-social {
  border-top: 1px dashed #505050;
  padding-top: 36px;
}
nav .menu-items .nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .hamburger-lines {
  position: absolute;
  top: 16px;
  right: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 26px;
  width: 32px;
  z-index: 21;
}
nav .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #cccccc;
}
nav .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
nav .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}
nav .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}
nav .burger-icon {
  pointer-events: all;
  position: absolute;
  display: block;
  z-index: 22;
  height: 32px;
  width: 32px;
  top: 13px;
  right: 13px;
  opacity: 0;
  cursor: pointer;
}
nav input[type=checkbox]:checked ~ .menu-items {
  transform: translateX(0);
}
nav input[type=checkbox]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
nav input[type=checkbox]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
nav input[type=checkbox]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.contact {
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.contact .contact-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.contact .contact-item div {
  text-align: center;
}
.contact .contact-item div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}
.contact .contact-item .social-list {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
}

.page-title {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-title h1 {
  text-align: center;
}
.page-title div {
  width: fit-content;
  align-self: center;
}
.page-title .link {
  padding: 12px 0;
}
.page-title .tar {
  width: 100%;
}

.description {
  padding: 0 6px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.description h2 {
  text-align: center;
}

.main-hero, .bio-hero {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.main-hero .hero-img, .bio-hero .hero-img {
  z-index: -1;
  position: relative;
}
.main-hero .hero-img img, .bio-hero .hero-img img {
  width: 100%;
}
.main-hero .hero-img .overlay, .bio-hero .hero-img .overlay {
  position: absolute;
  bottom: 20px;
  right: 0;
  margin: 12px;
  padding: 6px;
  border-color: #cccccc;
  border-style: dashed;
  border-width: 1px;
  text-align: right;
}
.main-hero .hero-img .overlay p, .bio-hero .hero-img .overlay p {
  margin: 6px;
  font-family: "Courier Prime", serif;
}

.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.project {
  background-color: #151515;
  padding: 24px;
  width: 100%;
  max-width: 359px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.project .description {
  gap: 12px;
  width: 100%;
  padding: 0;
}
.project .description a {
  text-decoration: none;
}
.project .description a:hover h3 {
  color: #FF4444;
}
.project .link {
  text-align: right;
  flex-wrap: wrap;
}

.events {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.event {
  background-color: #151515;
  padding: 12px;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: row;
  gap: 36px;
}
.event .calendar-page {
  border: 1px dashed #505050;
  width: 38px;
  height: fit-content;
  padding: 3px 3px 0px 3px;
  text-align: center;
}
.event .calendar-page .month .year {
  font-size: 12px;
}
.event .calendar-page .day {
  font-size: 20px;
  font-family: "Courier Prime", serif;
  padding: 3px 0;
}
.event .description {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.event .description .event-title h3 {
  font-family: "Courier Prime", serif;
  font-size: 16px;
  font-weight: bold;
  color: #EE2222;
}
.event .description .location {
  text-align: right;
}

.iframe-wrapper {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.iframe-wrapper div {
  max-width: 420px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.main {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  width: 100%;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 960px) {
  .main {
    display: grid;
    grid-template-columns: 200px auto;
    justify-content: center;
  }
}

@media screen and (min-width: 960px) {
  nav {
    margin: 0;
    position: sticky;
    top: 58px;
    z-index: 1;
  }
  nav .burger-icon {
    display: none;
  }
  nav .hamburger-lines {
    display: none;
  }
  nav .menu-items {
    transform: none;
    transition: none;
    width: 100%;
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 36px;
  }
}

@media screen and (min-width: 600px) {
  .footer .contact {
    flex-direction: row;
    gap: 72px;
  }
}
@media screen and (min-width: 960px) {
  .footer {
    margin-top: 24px;
  }
}

@media screen and (min-width: 960px) {
  .content {
    padding: 24px;
    max-width: 1200px;
    border-left: 1px dashed #505050;
  }
}

@media screen and (min-width: 600px) {
  .main-hero, .bio-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
  }
  .main-hero .hero-img, .bio-hero .hero-img {
    width: 50%;
  }
  .main-hero .description, .bio-hero .description {
    width: 50%;
    padding: 0px 24px;
  }
}

@media screen and (min-width: 600px) {
  .projects {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }
  .projects .project {
    width: 47%;
  }
}

@media screen and (min-width: 600px) {
  .project-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-content: right;
  }
}

body {
  font-family: "Cousine", sans-serif;
  background-color: #111111;
  color: #cccccc;
  font-size: 12px;
  line-height: 1.25;
}

a:link {
  color: #ffffff;
}

a:visited {
  color: #999999;
}

h1 {
  font-family: "Courier Prime", serif;
  font-size: 20px;
  font-weight: bold;
}

h2 {
  font-family: "Courier Prime", serif;
  font-size: 16px;
  font-weight: bold;
}

h3 {
  font-family: "Courier Prime", serif;
  font-size: 20px;
  font-weight: bold;
  color: #EE2222;
}

section ul {
  list-style-type: "– ";
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon {
  width: 32px;
  height: 32px;
  viewBox: 0 0 32px 32px;
}

.cp {
  color: #EE2222;
}

.tm {
  font-size: 14px;
}

.tar {
  text-align: right;
  width: 100%;
}

.button-wrapper {
  padding: 36px;
}

.main-button {
  background-color: #992222;
  color: #cccccc;
  border: none;
  padding: 6px 12px;
  font-family: "Cousine", sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
}

.main-button:visited {
  color: #cccccc;
}

.main-button:hover {
  background-color: #EE2222;
}

nav .menu-items {
  background-color: #111111;
  gap: 36px;
  text-align: center;
  justify-content: center;
}
nav .menu-items li {
  list-style: none;
  font-size: 20px;
  font-weight: bold;
}
nav .menu-items a {
  text-decoration: none;
  color: #cccccc;
}
nav .menu-items a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.header {
  background-color: #111111;
}
.header a {
  text-decoration: none;
  color: #cccccc;
}

.footer {
  padding: 72px 6px 36px 6px;
  gap: 24px;
  border-top: 1px dashed #505050;
}

section {
  gap: 24px;
  border-bottom: 1px dashed #505050;
  padding-bottom: 72px;
  margin-bottom: 72px;
}
section .md {
  padding-left: 6px;
  padding-right: 6px;
}

section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  text-align: center;
}

.media {
  padding: 0 6px;
  display: flex;
  justify-content: center;
}

.iframe-wrapper {
  max-width: 420px;
}

/*# sourceMappingURL=styles.css.map */