@media screen and (min-width: 680px) {
  .header {
    margin: 1em 0;
  }
}

@media screen and (min-width: 680px) {
  .header-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-right: 1em;
  }
}

.footer {
  background-color: #f4f6f8;
  border-top: 1px solid rgba(93, 37, 179, 0.12);
  padding: 2em 1em;
  margin-left: -1em;
  margin-right: -1em;
  width: calc(100% + 2em);
}
@media screen and (min-width: 680px) {
  .footer {
    border-radius: 0;
    padding: 1em 1em;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5em;
}
@media screen and (min-width: 680px) {
  .footer__content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 2em;
    padding: 0 1em;
  }
}
.footer__title {
  font-weight: 700;
  color: #5d25b3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9em;
}
.footer__note {
  font-size: 0.95em;
  line-height: 1.6;
  color: #5d25b3;
  opacity: 0.85;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  align-items: center;
}
@media screen and (min-width: 680px) {
  .footer__col {
    align-items: flex-start;
    text-align: left;
  }
}
@media screen and (min-width: 680px) {
  .footer__col:nth-child(2) {
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 680px) {
  .footer__col:nth-child(3) {
    align-items: flex-end;
    text-align: right;
  }
}
.footer__description {
  text-align: center;
  margin: 0.25em 0;
  font-size: 0.8em;
  opacity: 0.8;
}
@media screen and (min-width: 680px) {
  .footer__description {
    text-align: left;
  }
}
.footer__description--fine {
  font-size: 0.75em;
  opacity: 0.65;
}

.menu {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin: 1em auto;
}
@media screen and (min-width: 680px) {
  .menu {
    justify-content: end;
    margin: 0;
  }
}
.menu__item {
  list-style: none;
}
.menu__item:hover, .menu__item:active {
  transform: scale(1.07);
  transition: all 0.3s ease-in-out;
}
.menu__link {
  text-decoration: none;
  font-weight: 700;
  color: black;
}
.menu__link:hover, .menu__link:active {
  color: rgb(127.5, 127.5, 127.5);
  transition: all 0.3s ease-in-out;
}
.menu__link--active {
  color: rgb(127.5, 127.5, 127.5);
}

.btn {
  overflow: hidden;
  position: relative;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.2;
  transition: background-color 0.2s ease;
  font-weight: 700;
  background-color: #2f43b6;
  color: white;
  padding: 1em 2em;
  border-radius: 0.5em;
  text-align: center;
  width: 150px;
  height: 55px;
  letter-spacing: 1px;
  font-size: 0.95em;
  padding: 0.8em 1.6em;
  width: auto;
  height: auto;
  min-width: 140px;
  margin-bottom: 1em;
}
.btn:hover, .btn:active {
  background-color: rgb(72.2052401747, 92.2925764192, 207.7947598253);
}

.btn--secondary {
  background-color: transparent;
  color: #2f43b6;
  border: 2px solid #2f43b6;
}

.btn--wide {
  min-width: 180px;
}

.btn--secondary:hover,
.btn--secondary:active {
  background-color: rgb(72.2052401747, 92.2925764192, 207.7947598253);
  color: white;
}

.buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
}
@media screen and (min-width: 680px) {
  .buttons {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}

button .circle {
  position: absolute;
  background-color: #5d25b3;
  z-index: -1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: scale 0.5s ease-out;
}

@keyframes scale {
  to {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.badge {
  display: inline-block;
  border-radius: 0.5em;
  padding: 0.25em 0.6em;
  color: #5d25b3;
  text-transform: none;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-width: 4.2em;
  margin: 0 0 0.25em 0;
  background: rgba(93, 37, 179, 0.12);
  border: 1px solid rgba(93, 37, 179, 0.2);
}
.badge--progress {
  color: #0f5132;
  background: rgba(25, 135, 84, 0.16);
  border: 1px solid rgba(25, 135, 84, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--hero {
  color: white;
  background-color: #5d25b3;
  border: 1px solid rgba(93, 37, 179, 0.35);
  box-shadow: 0 6px 14px rgba(93, 37, 179, 0.18);
}
@media screen and (min-width: 680px) {
  .badge--hero {
    margin: 0;
    grid-column: 1/2;
    grid-row: 2/3;
    justify-self: start;
  }
}
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em 0.5em;
  margin: 0 0 0.25em 0;
}
.badges .badge {
  margin: 0;
}

.card {
  border-radius: 0.5em;
  padding: 1em;
  width: 100%;
  margin: 1em auto;
  background-color: #f4f6f8;
  min-height: 200px;
}
@media screen and (min-width: 680px) {
  .card {
    display: flex;
    gap: 2em;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
.card__header {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 680px) {
  .card__header {
    flex: 0 0 30%;
  }
}
.card__title {
  font-size: 1.15em;
  color: #2f43b6;
  margin-bottom: 0.25em;
}
@media screen and (min-width: 680px) {
  .card__title {
    font-size: 1.25em;
  }
}
.card__date {
  display: inline-block;
  color: #5d25b3;
  font-weight: 600;
  font-size: 0.75em;
  letter-spacing: 0.02em;
  background: rgba(93, 37, 179, 0.12);
  border: 1px solid rgba(93, 37, 179, 0.2);
  padding: 0.25em 0.6em;
  border-radius: 0.5em;
  margin-bottom: 1em;
}
.card__date--link {
  background: none;
  border: none;
  padding: 0;
}
@media screen and (min-width: 680px) {
  .card__description,
  .card .card-description {
    flex: 1 1 60%;
    min-width: 0;
  }
}
@media screen and (min-width: 680px) {
  .card__description--meta {
    flex-basis: 100%;
  }
}
.card--project {
  margin: 2em 0;
}
.card--inactive {
  opacity: 0.7;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 0.5em;
}

.project .icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em;
}

.project .icon-image {
  width: 30px;
  height: 30px;
}

.project .project-thumb {
  display: block;
  width: 100%;
  margin: 0.5em auto 1em;
  text-decoration: none;
  color: inherit;
}

.project .project-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5em;
  border: 1px solid rgba(93, 37, 179, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 680px) {
  .project .card--project .card__header {
    flex: 0 0 25%;
  }
  .project .card--project .project-thumb {
    flex: 0 0 30%;
    max-width: 30%;
    margin: 0;
  }
  .project .card--project .card-description {
    flex: 1 1 45%;
  }
}

.icon-image:hover,
.icon-image:focus {
  filter: invert(50%);
  transform: scale(1.07);
  transition: all 0.3s ease-in-out;
}

.hero {
  padding: 1em;
  background-color: #f4f6f8;
  border-top: 1px solid rgba(93, 37, 179, 0.12);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: center;
  margin-left: -1em;
  margin-right: -1em;
  width: calc(100% + 2em);
  margin-bottom: 1em;
}
@media screen and (min-width: 680px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: auto auto auto auto;
    -moz-column-gap: 2em;
         column-gap: 2em;
    align-items: start;
    border-radius: 0;
    padding: 2em;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.hero__description {
  margin-bottom: 1em;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2f43b6;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 680px) {
  .hero__description {
    grid-column: 1/2;
    grid-row: 3/4;
    text-align: start;
  }
}
.hero__badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25em;
  margin: 0.25em 0 1em;
}
@media screen and (min-width: 680px) {
  .hero__badges {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-content: flex-start;
    margin: 0.25em 0 1em;
  }
}
.hero .description--hero {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 680px) {
  .hero .description--hero {
    text-align: start;
    margin-left: 0;
    margin-right: 0;
  }
}
.hero .badge {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25em 0.7em;
  white-space: nowrap;
  margin: 0;
}
.hero .title--hero {
  font-size: 2.4em;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-top: 0;
  text-align: center;
}
@media screen and (min-width: 680px) {
  .hero .title--hero {
    font-size: 3.1em;
    text-align: start;
  }
}
.hero .description {
  max-width: 48ch;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (min-width: 680px) {
  .hero .description {
    text-align: start;
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.hero .buttons {
  margin-top: auto;
}
@media screen and (min-width: 680px) {
  .hero .buttons {
    grid-column: 1/2;
    grid-row: 5/6;
    align-self: start;
  }
}
.hero__image {
  display: none;
  margin: 2em auto 0;
  border-radius: 0.5em;
  max-width: 100%;
  border: 1px solid rgba(47, 67, 182, 0.12);
  box-shadow: 0 12px 28px rgba(47, 67, 182, 0.18);
}
@media screen and (min-width: 680px) {
  .hero__image {
    display: block;
    grid-column: 2/-1;
    grid-row: 1/-1;
    justify-self: center;
    align-self: center;
  }
}

@media screen and (min-width: 680px) {
  .buttons--hero {
    justify-content: start;
  }
}

.about,
.ai,
.tech,
.free-time {
  padding: 1em;
  margin: 1em;
}

.subtitle--about,
.subtitle--ai,
.subtitle--tech,
.subtitle--free {
  text-align: start;
  color: #5d25b3;
  margin-bottom: 0.5em;
}

.ai-tools {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ai-tools li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.ai-tools strong {
  font-weight: 600;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.tech-list li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.tech .accent {
  font-weight: 600;
}

.tech .muted {
  opacity: 0.7;
  font-size: 0.9em;
}

.resume {
  padding: 1em;
}
@media screen and (min-width: 680px) {
  .resume {
    padding: 0 2em;
  }
}

.skills {
  margin-bottom: 2em;
}
@media screen and (min-width: 680px) {
  .skills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
}

.resume__actions {
  display: flex;
  justify-content: center;
  margin: 1em 0 2em;
}
@media screen and (min-width: 680px) {
  .resume__actions {
    justify-content: flex-start;
  }
}

.skill-group {
  margin-bottom: 2em;
}

.skill-group h3 {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #2f43b6;
}

.contact {
  padding: 1em;
  margin: 1em;
  text-align: center;
}
@media screen and (min-width: 680px) {
  .contact {
    text-align: left;
  }
}

.contact__lead {
  line-height: 1.6;
  margin: 1em 0 2em;
  max-width: 52ch;
}

.contact__primary {
  margin-bottom: 2em;
}

.contact__email {
  font-size: 1.2em;
  font-weight: 700;
  color: #5d25b3;
}

.contact__links {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 680px) {
  .contact__links {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 680px) {
  .project {
    padding: 0 2em;
  }
}

html {
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.7;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 0.5em;
}
@media screen and (min-width: 680px) {
  .wrapper {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
  }
}

.main {
  flex: 1;
}

.title {
  color: #5d25b3;
  text-align: center;
  font-size: 2.4em;
}
@media screen and (min-width: 680px) {
  .title {
    font-size: 2.7em;
  }
}
.title--hero {
  text-transform: uppercase;
  margin-top: 1em;
}
@media screen and (min-width: 680px) {
  .title--hero {
    grid-column: 1/2;
    grid-row: 1/2;
    margin: 0;
  }
}

.subtitle {
  color: #2f43b6;
  font-size: 1.6em;
}
@media screen and (min-width: 680px) {
  .subtitle {
    font-size: 1.8em;
  }
}
.subtitle--projects {
  font-size: 1.25em;
  margin-bottom: 0.25em;
}
.subtitle--resume {
  color: #5d25b3;
  margin: 1em 0;
}
@media screen and (min-width: 680px) {
  .subtitle--resume {
    font-size: 2em;
  }
}

.description {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.weight {
  font-weight: 600;
}

.link {
  color: #2f43b6;
}
.link:hover, .link:focus {
  color: #5d25b3;
}

html {
  font-family: "Open Sans", sans-serif;
}

h1 > h6 {
  font-family: "Montserrat", sans-serif;
}/*# sourceMappingURL=main.css.map */
