*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

body {
  background: #f4f5f7;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
body main section {
  height: 80dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
}
body main section .container .button-to-author {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5em;
  text-decoration: none;
  appearance: none;
  background-color: #FAFBFC;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px 10px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}
body main section .container .button-to-author:hover {
  background-color: #F3F4F6;
  text-decoration: none;
  transition-duration: 0.1s;
}
body main section .container .button-to-author .fa-solid {
  color: #4f86ff;
}
body main section .container .flex {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  align-items: stretch;
  gap: 0.5em;
}
body main section .container .flex .pulse {
  animation: pulse-animation 1s;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}
body main section .container .flex a {
  color: initial;
}
body main section .container p {
  margin-top: 0.5em;
  width: 100%;
}
body main .free-p,
body main .own-p {
  text-align: center;
  position: relative;
  margin: 2em 0;
}
body main .free-p::before, body main .free-p::after,
body main .own-p::before,
body main .own-p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5em;
  height: 1px;
  background-color: #babdc4;
}
body main .free-p::before,
body main .own-p::before {
  transform: translateX(-7em);
}
body main .free-p::after,
body main .own-p::after {
  transform: translateX(2em);
}
body main .projects {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1em;
  margin-bottom: 3em;
  flex-wrap: wrap;
}
body main .projects .card-project {
  border-radius: 10px;
  width: 30vw;
  min-width: 250px;
  max-width: 350px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border: 1px solid rgba(27, 31, 35, 0.15);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  color: initial;
}
body main .projects .card-project[data-init=true] {
  display: none;
}
@media all and (max-width: 500px) {
  body main .projects .card-project {
    width: 90vw;
  }
}
body main .projects .card-project img {
  width: 100%;
  object-fit: cover;
  height: 30vh;
  max-height: 200px;
  object-position: top;
}
body main .projects .card-project .footer {
  white-space: nowrap;
  padding: 1em;
}
body main .projects .card-project .footer h3 {
  font-weight: 500;
}
body main footer {
  display: flex;
  justify-content: center;
  margin: 1em 0 3em;
}

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