@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/static/fonts/main/IBM_Plex_Mono/IBMPlexMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html, body, * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
}

input {
  outline: none;
}

*::placeholder {
  opacity: 0.25;
}

/* gold */
body {
  background-color: #121212;
  color: #f5f5f5;
  font-family: "IBM Plex Mono", monospace;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 1rem auto;
  border: 1px solid #333;
}

section {
  padding: 2rem;
  border-bottom: 1px solid #333;
}

h1, h2 {
  color: #f5f5f5;
}

section > h1 {
  padding-bottom: 0.4rem;
}

section > h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
}

.logo_motto {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logo_motto .logo {
  height: 100px;
  margin-right: 2rem;
}

.home_logo {
  width: 100px;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
}
.home_logo img {
  height: 2rem;
  visibility: hidden;
  cursor: pointer;
}

.frozen-nav .home_logo {
  margin-left: 2rem;
}
.frozen-nav .home_logo img {
  visibility: visible;
}

.nav-buttons {
  padding: 1.25rem 0;
  display: flex;
  justify-content: flex-start;
}

.nav-buttons button {
  background: none;
  border: 1px solid #333;
  color: #f5f5f5;
  padding: 0.5rem 1.2rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-buttons button:hover {
  background-color: #333;
}

.frozen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: #121212;
  border-bottom: 1px solid #333;
}

.frozen-limiter {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}
@media (max-width: 640px) {
  .frozen-limiter {
    max-width: 640px;
  }
}
@media (max-width: 380px) {
  .frozen-limiter {
    max-width: 380px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #333;
  padding: 1.2rem;
  border-radius: 6px;
  background-color: #181818;
  transition: all 0.2s ease-in-out;
}
.project-card h3 {
  margin-top: 0;
  color: #f5f5f5;
}
.project-card p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}
.project-card .tech-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.project-card .tech-tags span {
  background-color: #222;
  border: 1px solid #444;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 4px;
  color: #aaa;
}
.project-card:hover {
  background: #2f2f2f;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  align-items: center;
}
@media (max-width: 640px) {
  .about-content {
    flex-direction: column;
    justify-content: center;
  }
}

.about-text {
  width: 75%;
  min-width: 250px;
}
@media (max-width: 640px) {
  .about-text {
    width: 100%;
  }
}

.cv-button-wrap {
  width: 25%;
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 640px) {
  .cv-button-wrap {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}

.cv-button {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid #333;
  color: #ffd700;
  background-color: transparent;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.cv-button:hover {
  background-color: #333;
}

.contact-grid {
  display: grid;
  grid-template-areas: "email note" "submit note";
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .contact-grid {
    grid-template-areas: "email" "note" "submit";
    grid-template-columns: 1fr;
  }
}

.email-input {
  grid-area: email;
  gap: 0.5rem;
  position: relative;
}
.email-input::before {
  content: ">_";
  position: absolute;
  width: 2rem;
  left: 0.25rem;
  top: 0.25rem;
  color: #ffd700;
}
.email-input input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #333;
  padding: 0.25rem 0.25rem 0.5rem 2rem;
  font-size: 1.25rem;
  font-weight: 100;
  color: #ffd700;
}
.email-input input:focus {
  border-bottom: 1px solid #ffd700;
}
.email-input .add-note_button {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  top: 0.5rem;
  right: 0;
  opacity: 0.2;
  transition: all 0.2s ease-in-out;
}
.email-input .add-note_button:hover {
  opacity: 1;
}

#note-container {
  grid-area: note;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#note-container .add_note_textarea {
  flex-grow: 1;
  resize: none;
  background: none;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  width: 100%;
  color: gold;
  font-weight: 100;
  font-size: 1rem;
  position: relative;
  outline: none;
}
#note-container .add_note_textarea:focus {
  border-bottom: 1px solid #ffd700;
}
#note-container .char-counter {
  position: absolute;
  right: 0.25rem;
  bottom: 0;
  font-size: 0.75rem;
  color: greenyellow;
  opacity: 0.25;
}

.submit-btn {
  grid-area: submit;
  background: none;
  padding: 0.75rem 1.5rem;
  color: #ffd700;
  font-size: 1rem;
  font-weight: 100;
  border: 1px solid #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.submit-btn:hover {
  background: #333;
}
.submit-btn:disabled, .submit-btn[disabled] {
  color: #444;
  background: none;
  cursor: default;
}

.status-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: none;
}
.status-message.success {
  color: #0f0;
  background-color: #122;
}
.status-message.error {
  color: #f66;
  background-color: #211;
}

.mail-link {
  margin-top: 3rem;
}
.mail-link a {
  color: gold;
}

.social-links a {
  text-decoration: none;
}
.social-links a img {
  height: 1.25rem;
}

@media (max-width: 640px) {
  .container {
    border: none;
    margin: 0 auto;
  }
  section {
    border: none;
  }
}

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