@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
p,
span,
li {
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
  font-size: 16px;
  color: #f2f2f2;
}

body {
  display: flex;
  justify-content: center;
  background-color: black;
  position: relative;
}
body a.language-switch {
  position: absolute;
  top: 4px;
  right: 4px;
  font-family: "VT323", monospace;
  font-size: 24px;
  color: #f28157;
  border-radius: 4px;
  background-color: rgba(47, 44, 64, 0.25);
}
body #open-modal-btn {
  position: fixed;
  bottom: 16px;
  right: 4px;
  background: none;
  border: 2px solid #80f2e7;
  color: #80f2e7;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  z-index: 100;
}
body #open-modal-btn:hover {
  background: #80f2e7;
  color: #2f2c40;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}
body #open-modal-btn:active {
  transform: scale(0.95);
}
body #modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
}
body #modal div.modal-container {
  min-width: 320px;
  position: relative;
  padding: 20px;
  border: 2px solid #f28157;
  background: #2f2c40;
  color: #f2f2f2;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 146, 107, 0.4);
}
body #modal div.modal-container h3 {
  color: #80f2e7;
}
body #modal div.modal-container a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
  font-weight: bold;
  color: #f28157;
  transition: 0.3s ease;
}
body #modal div.modal-container a:hover {
  color: #80f2e7;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}
body #modal div.modal-container #close-modal-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: none;
  border: none;
  color: #f28157;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s ease;
}
body #modal div.modal-container #close-modal-btn:hover {
  color: #80f2e7;
  transform: rotate(90deg);
}
body #modal div.modal-container::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
body div.container {
  margin: 0 auto;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 210mm;
  height: 297mm;
  background-color: #2f2c40;
}
body div.container .heading {
  color: #f28157;
}
body div.container .symbol {
  color: #80f2e7;
}
body div.container .symbol-alternative {
  color: #f28157;
}
body div.container img.sticker {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 128px;
  height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body div.container header p.tag-cv-container *,
body div.container footer p.tag-cv-container * {
  font-size: 48px;
}
body div.container header div.dog-tag {
  display: flex;
  align-items: center;
  gap: 8px;
}
body div.container header div.dog-tag p {
  font-size: 24px;
}
body div.container header div.dog-tag p.name {
  color: #80f2e7;
}
body div.container main {
  flex: 1;
}
body div.container main h2.heading-container * {
  font-size: 24px;
}
body div.container main div.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body div.container main section.work-experience p.experience-title *,
body div.container main section.education p.experience-title * {
  font-size: 20px;
}
body div.container main section.work-experience span.title,
body div.container main section.work-experience p.title,
body div.container main section.education span.title,
body div.container main section.education p.title {
  color: #80f2e7;
}
body div.container main section.work-experience span.role,
body div.container main section.work-experience span.time,
body div.container main section.work-experience span.institution,
body div.container main section.education span.role,
body div.container main section.education span.time,
body div.container main section.education span.institution {
  color: #f28157;
}
body div.container main section.work-experience li ul,
body div.container main section.education li ul {
  margin-left: 16px;
}
body div.container main section.work-experience li ul li p.title,
body div.container main section.education li ul li p.title {
  font-size: 16px;
}
body div.container main section.education {
  margin-bottom: 0;
}
@media only screen and (max-width: 800px) {
  body {
    background-color: #2f2c40;
  }
  body a.language-switch {
    margin: 8px 2px;
    padding: 4px 8px;
    font-size: 16px;
    color: rgba(242, 128, 87, 0.5);
    z-index: 1;
  }
  body div.container {
    width: 100vw;
  }
  body div.container main img.sticker {
    right: 32px;
    width: 64px;
    height: 64px;
  }
  body div.container main section {
    margin-top: 12px;
  }
  body div.container main div.columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}/*# sourceMappingURL=style.css.map */