body {
  background-color: #F5EEE1;
  margin: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

a {
  text-decoration: none;
  color: #0F202E;
  outline: none;
  border-radius: 15px;
}

a * {
  transition-duration: 0.25s;
}

a:hover .linkBox,
a:active .linkBox {
  background-color: #0F202E;
  border-color: #D8A068;
  box-shadow: #D8A068 3px 3px 3px;
}

a:hover .desc,
a:active .desc {
  color: #F5EEE1;
}

a:hover .heading,
a:active .heading,
a:hover i,
a:active i {
  color: #D8A068;
  border-color: #D8A068;
}

.linkBox {
  border: 1px solid #0F202E;
  padding: 1rem;
  text-align: center;
  font-family: "Playfair Display", serif;
  background-color: #F5EEE1;
  border-radius: 15px;
  box-shadow: #0F202E 3px 3px 5px;
  color: #0F202E;
  transition-duration: 0.25s;
}

.heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0;
  border-bottom: 1px solid #c0564a;
  padding-bottom: 1rem;
}

.navBottom {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #0F202E;
  color: #F5EEE1;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  margin: 0;
  font-family: "Playfair Display", serif;
}

.navBox {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
}

.contact {
  align-self: flex-start;
  max-height: calc(100vh - 1rem);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #D8A068 #0F202E;
  scrollbar-width: thin;
  transition: height 0.25s ease;
}

.contact.resizing {
  overflow-y: hidden;
}

.contact::-webkit-scrollbar {
  width: 0.65rem;
}

.contact::-webkit-scrollbar-track {
  background: #0F202E;
}

.contact::-webkit-scrollbar-thumb {
  background-color: #D8A068;
  border: 2px solid #0F202E;
  border-radius: 999px;
}

.contact::-webkit-scrollbar-thumb:hover {
  background-color: #c0564a;
}

.contact.expanded .contactForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: stretch;
}

.contact.expanded .messageField {
  grid-column: 1/-1;
}

.contact.expanded .messageField textarea {
  min-height: 5rem;
  height: 100%;
}

.contact.expanded .sendMessageButton {
  grid-column: 1/-1;
}

.contactForm {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.contactForm label {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.contactForm input,
.contactForm textarea {
  box-sizing: border-box;
  background-color: #F5EEE1;
  width: 100%;
  border-radius: 4px;
  padding: 0.4rem;
  font: inherit;
  outline: none;
  border: none;
}

.contactForm textarea {
  resize: vertical;
}

#contactInput.invalid {
  border-color: #c0564a;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sendMessageButton {
  align-self: flex-end;
  border: none;
  background-color: #c0564a;
  color: #F5EEE1;
  cursor: pointer;
  font: inherit;
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  transition-duration: 0.25s;
}

.sendMessageButton:hover,
.sendMessageButton:focus-visible {
  background-color: #D8A068;
}

.sendMessageButton:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contactStatus {
  margin: 0.5rem 0 0;
}

.expandButton {
  border: 1px solid #F5EEE1;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0.2rem 0.35rem;
}

.expandButton:hover,
.expandButton:focus-visible {
  background-color: #F5EEE1;
  color: #0F202E;
}

@media (max-width: 600px) {
  a {
    width: 100%;
  }

  .navBottom {
    position: static;
    flex-direction: column;
  }
  .navBox {
    width: 100%;
  }
  .contactForm {
    flex-direction: column;
    align-items: stretch;
  }
  .contact.expanded .contactForm {
    display: flex;
  }
}
h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: normal;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F5EEE1;
}/*# sourceMappingURL=tkstyle.css.map */