body {
  display: flex;
  justify-content: center;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.button {
  padding: 0.5rem 1.8rem;
  border: solid 2px #18181B;
  border-radius: 60px;
  font-weight: 500;
}

#contact-button {
  background-color: transparent;
  transition: 0.3s;
  color: #18181B;
}
#contact-button:hover {
  background-color: #18181B;
  cursor: pointer;
  color: white;
}

#cv-button {
  background-color: #18181B;
  transition: 0.3s;
  color: white;
}
#cv-button:hover {
  background-color: #37373D;
  cursor: pointer;
}

.logo-icon {
  width: 26px;
}

#main-logo-icon {
  width: 36px;
  margin-bottom: 1.6rem;
}

#content-container {
  max-width: 600px;
  margin: 6rem 3rem;
}

#header-right-section {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 0.8rem;
}

#intro-paragraph {
  margin-bottom: 4.4rem;
}

#tagline,
#last-updated {
  color: #A6A6A6;
}

#header-container {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 1.4rem;
}

@media (max-width: 600px) {
  #content-container {
    margin: 2rem;
  }
  #intro-paragraph {
    margin-bottom: 2.8rem;
  }
  #last-updated {
    margin-bottom: 0;
  }
}
@media (max-width: 460px) {
  #header-container {
    display: flex;
    flex-direction: column;
  }
  #header-right-section {
    justify-content: left;
    margin-bottom: 1rem;
  }
}
.project-card {
  border: solid 2px #F5F5F5;
  border-radius: 10px;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  transition: 0.3s;
}
.project-card:hover {
  background-color: #F5F5F5;
}

#projects-title {
  margin-bottom: 1.4rem;
}

#projects-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}/*# sourceMappingURL=styles.css.map */