h1, h2, h3, h4, h5, h6 {
  font-family: "Short Stack", cursive;
}

h1 {
  font-size: 36px;
}
@media (min-width: 700px) {
  h1 {
    font-size: 43px;
    font-weight: bold;
  }
}

h2 {
  font-size: 30px;
}
@media (min-width: 700px) {
  h2 {
    font-size: 39px;
  }
}

h3 {
  font-size: 26px;
}
@media (min-width: 700px) {
  h3 {
    font-size: 36px;
  }
}

h4 {
  font-size: 24px;
}
@media (min-width: 700px) {
  h4 {
    font-size: 30px;
  }
}

h5 {
  font-size: 22px;
}
@media (min-width: 700px) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 20px;
}

#header {
  position: sticky;
  top: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #D3F3FF;
  height: 45px;
  z-index: 10000;
  box-shadow: 0 5px 10px rgba(37, 51, 117, 0.1019607843);
}
#header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}
#header nav a {
  text-decoration: none;
  margin-left: auto;
  padding: 0 4px;
  color: #444444;
  transition: color 0.5s;
}
#header nav a:hover {
  color: #F87E3F;
}
#header nav a.current-page {
  color: #7B0000;
  font-weight: bold;
}
#header #bluesky-link {
  width: 30px;
  height: 30px;
  margin-right: 24px;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/images/square-bluesky-brands-solid.svg);
}
#header #non-home-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

#home-button {
  display: block;
  width: 30px;
  height: 30px;
  margin-left: 4px;
  margin-right: auto;
  cursor: pointer;
  z-index: 999;
  background-size: 24px;
  background-image: url(/images/noun-home-3367736.svg);
  mask-image: none;
  background-color: none;
  background-repeat: no-repeat;
  background-position: center;
}

#home-button.current-page {
  background-image: none;
  background-color: #7B0000;
  mask-image: url(/images/noun-home-3367736.svg);
  mask-size: 30px;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(/images/noun-home-3367736.svg);
  -webkit-mask-size: 30px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

#expand-button {
  display: none;
}
@media (min-width: 700px) {
  #expand-button {
    width: 30px;
    height: 30px;
    margin-left: auto;
    cursor: pointer;
    z-index: 999;
    background-size: 24px;
    background-image: url(/images/bars-solid-full.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
}

body {
  margin: 0;
  font-family: "Anuphan", sans-serif;
  background: #252525;
}
@media (min-width: 700px) {
  body .content-wrapper {
    margin: 70px 20%;
  }
}

.section {
  padding: 25px;
  font-size: 20px;
}
.section h1, .section h2, .section h3, .section h4, .section h5, .section h6 {
  text-align: center;
  margin-top: 0px;
}
.section:nth-child(even) {
  background-color: #dddddf;
}
.section:nth-child(odd) {
  background-color: #D3F3FF;
}
@media (min-width: 700px) {
  .section:first-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media (min-width: 700px) {
  .section:last-of-type {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

#bio h1 {
  text-align: center;
}

.profile-picture {
  margin: 20px auto;
  max-width: 90%;
}
.profile-picture img {
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}
@media (min-width: 700px) {
  .profile-picture {
    height: 200px;
    margin: 20px;
  }
  .profile-picture img {
    width: auto;
    height: 100%;
  }
}

#flash-cards .sample-flashcards {
  display: flex;
  gap: 20px;
}
#flash-cards #sample-flash-card1,
#flash-cards #sample-flash-card2 {
  width: 250px;
  aspect-ratio: 5/7;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 95%;
}
#flash-cards #sample-flash-card1 {
  background-image: url("images/flashcard/abd-pollicis-longus_back_q.jpg");
}
#flash-cards #sample-flash-card1:hover {
  background-image: url("images/flashcard/abd-pollicis-longus_back.jpg");
}
#flash-cards #sample-flash-card2 {
  background-image: url("images/flashcard/fcr_isolated_q.jpg");
}
#flash-cards #sample-flash-card2:hover {
  background-image: url("images/flashcard/fcr_isolated.jpg");
}

.social-icon-link {
  display: block;
  width: 35px;
}
.social-icon-link img {
  width: 100%;
  height: auto;
}

.hidden {
  display: none !important;
}

#tinyprojects-menu-expand-button {
  left: 0px;
  top: 45px;
  position: sticky;
  width: fit-content;
  padding: 8px;
  border-bottom-right-radius: 10px;
  background-color: #D3F3FF;
  z-index: 9;
  box-shadow: 0 5px 10px rgba(37, 51, 117, 0.1019607843);
  display: flex;
  align-items: center;
  gap: 10px;
}
#tinyprojects-menu-expand-button img {
  height: 14px;
  width: auto;
  padding-top: 2px;
  margin-left: -2px;
  transform: rotate(-90deg);
}

#panel {
  position: sticky;
  top: 45px;
  bottom: 0;
  left: -380px;
  margin-left: -380px;
  margin-top: -45px;
  padding-top: 15px;
  float: left;
  z-index: 10;
  width: 240px;
  max-width: 300px;
  height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  background-color: #D3F3FF;
  overflow-x: hidden;
  box-shadow: 0 5px 10px rgba(37, 51, 117, 0.1019607843);
  border-bottom-right-radius: 10px;
}
@media (max-width: 700px) {
  #panel {
    width: 100%;
    overflow: hidden;
  }
}

#panel.open {
  height: 100%;
  transform: translate3d(380px, 0, 0);
}

#panel h1 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding-left: 16px;
}
#panel h1 a {
  color: #253375;
  text-decoration: none;
}

#panel-scrim {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: 0.2s background-color;
}

#panel-scrim.open {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

#panel #panel-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 16px 16px;
}

#panel #panel-content ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px 0 20px 0;
}

#panel #panel-content ul li {
  margin: 1px 0;
}

#panel #panel-content h2:not(.hidden) {
  margin-top: 16px;
  border-top: none;
  padding-top: 0;
}

#panel #panel-content h2:not(.hidden) ~ h2 {
  margin-top: 32px;
  border-top: 1px solid #444444;
  padding-top: 12px;
}

#panel #panel-content h3 {
  color: #252525;
  font-weight: 900;
}

#panel #panel-content a {
  position: relative;
  color: #252525;
  text-decoration-line: none;
}

#panel #panel-content a:hover,
#panel #panel-content a:hover .spacer,
#panel #panel-content .selected {
  color: #26A4CA;
}

.card {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card .cover {
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
}

.card .cover img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card a .title {
  padding: 8px 12px 4px;
  font-size: calc(var(--font-size) - 1px);
  font-weight: 500;
  line-height: calc(var(--line-height) - 6px);
  background-color: #dddddf;
  text-decoration-line: none;
}

#tinyprojects-viewer,
iframe {
  position: absolute;
  border: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media all and (max-width: 700px) {
  #tinyprojects-viewer,
  iframe {
    left: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media all and (max-width: 700px) {
  #tinyprojects-welcome.content-wrapper {
    width: 90%;
    margin: 70px auto;
  }
}

#tinyprojects-welcome .section {
  border-radius: 20px;
}

.section img.artwork {
  width: 100%;
}

.section img.artwork-small {
  width: 45%;
}

.section .image-group {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

#tango-sticker-banner {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 300px;
  width: 100%;
  aspect-ratio: 3/1;
  border-color: #9c9c9c;
  border-style: solid;
  border-radius: 13px;
  border-width: 2px;
}

#tango-sticker-banner .artwork {
  flex: 1;
  object-fit: cover;
  height: 100%;
  width: auto;
}

#tango-sticker-banner .artwork:first-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

#tango-sticker-banner .artwork:last-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

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