@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

:root {
  --background-color: #1a1a1d;
  --text-color: #fff;
  --highlight: #c3073f;
}

body {
  width: 100%;
  height: 100%;
  background: var(--background-color);
  color: var(--text-color);
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  line-height: 1.25rem;
}

.page-container {
  max-width: 800px;
  padding: 0rem 1.5rem;
}

nav {
  font-family: "Courier New", Courier, monospace;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0 0 0;
}

nav > a {
  color: var(--text-color);
}

section {
  padding: 2rem 0rem 1rem 0rem;
  /* border-top: 2px solid var(--highlight); */
}

.section-title {
  color: var(--highlight);
  padding-bottom: 1.5rem;
  font-size: 1.5rem;
}

footer {
  padding: 1.5rem 0rem 3rem 0rem;
}

/* About */
.about {
  padding: 0rem;
}

.title {
  font-size: 2rem;
  color: var(--highlight);
  margin-top: 2.5rem;
  padding: 2rem 0rem 1rem 0rem;
}

.about > p {
  margin: 0.5rem 0rem;
}

.tagline {
  margin-bottom: 1.5rem !important;
  font-style: italic;
}

/* Projects */
.project-item {
  /* border: 2px solid var(--highlight); */
  border-radius: 15px;
  line-height: 1.25rem;
}

.project-item:not(:first-child) {
  padding-top: 3rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.project-title {
  font-weight: bold;
  padding-bottom: 0.5rem;
}

.project-tag {
  background-color: #c3073f;
  border-radius: 25px;
  padding: 0rem 0.5rem;
  color: var(--background-color);
}

.project-tag::first-letter {
  text-transform: uppercase;
}

.tag-client {
  background-color: #f26157;
}

.tag-academic {
  background: #fe9920;
}

.project-tech {
  padding-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.project-item:hover .project-tech {
  opacity: 1;
  visibility: visible;
}

.project-tech p {
  border: 2px solid white;
  border-radius: 25px;
  background: white;
  color: black;
  padding: 0rem 0.25rem;
  font-size: 0.75rem;
  font-family: "Courier New", Courier, monospace;
}

/* Contact */
.email-button {
  text-decoration: none;
  color: var(--highlight);
}
