* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: filson-pro, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: white;
  padding: 0 15px;
  font-size: clamp(0.875rem, 0.6rem + 0.7vw, 1.125rem);
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}
body * {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #222;
}

h2 {
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.6rem);
}

h3 {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
}

ul,
ol {
  margin-left: 20px;
  margin-bottom: 10px;
}

li {
  margin-bottom: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: clamp(0.9rem, 0.8rem + 0.2vw, 1rem);
}
table th,
table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
table th {
  background-color: #007bff;
  color: white;
}

main {
  margin-top: 20vh;
  animation: show 2s ease-in-out 0s 1 normal forwards;
}
@media (min-width: 1024px) {
  main {
    margin-top: 18vh;
  }
}

.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

.header-background {
  padding: 0;
  margin: 0 -15px;
  background-color: #1a1a1a;
}
.header-background img {
  width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-size: clamp(0.85rem, 0.75rem + 0.2vw, 0.95rem);
  color: transparent;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  animation: rotation 2s ease-in-out 0s 1 normal forwards;
}
.btn.inline {
  display: inline;
  max-width: 32px;
  padding: 0;
  font-size: 0;
}
.btn.inline img {
  width: 32px;
  height: 32px;
}
.btn.hide {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#pt,
#en {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  animation: show 1s ease-in-out 0s 1 normal forwards;
}

.hide {
  display: none;
}

.header-title {
  text-align: center;
  margin-bottom: 20px;
}
.header-title h1 {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
  color: #333;
}
.header-title h1.uppercase {
  text-transform: uppercase;
}
.header-title h1 small {
  display: block;
  font-size: clamp(0.7rem, 0.55rem + 0.4vw, 0.9rem);
  color: #808080;
}

.header-container {
  background-color: #fff;
  color: #333;
  padding: 0 15px;
  width: calc(100vw - 15px);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .header-container {
    width: calc(100% - 90px);
  }
}
.header-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  .header-navigation {
    justify-content: center;
  }
}
.header-navigation .btn {
  margin: 0;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navigation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.9375rem;
}
.navigation-bar .menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 25px;
  height: 25px;
  animation: show 2s ease-in-out 0s 1 normal forwards;
}
@media (min-width: 1024px) {
  .navigation-bar .menu-toggle {
    display: none;
  }
}
.navigation-bar .menu-toggle .bar {
  display: block;
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  left: 0;
}
.navigation-bar .menu-toggle .bar:nth-child(1) {
  top: 0;
}
.navigation-bar .menu-toggle .bar:nth-child(2) {
  top: 11px;
}
.navigation-bar .menu-toggle .bar:nth-child(3) {
  top: 22px;
}
.navigation-bar .menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.navigation-bar .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.navigation-bar .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}
.navigation-bar .menu-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .navigation-bar .menu-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
  }
}
.navigation-bar .menu-nav.active {
  display: block;
  position: absolute;
  top: 12vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 15px 0;
  z-index: 1000;
}
.navigation-bar .menu-nav .nav-item {
  color: #333;
  padding: 0;
  font-size: clamp(1rem, 0.8rem + 0.4vw, 1.2rem);
  text-decoration: none;
}
.navigation-bar .menu-nav .nav-item a {
  display: block;
  padding: 10px 15px;
  color: inherit;
  text-decoration: none;
  font-weight: 200;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.navigation-bar .menu-nav .nav-item a:hover {
  color: #222;
  font-weight: 800;
}
.navigation-bar .action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

.about,
.experience,
.expertise,
.stack,
.interests,
.projects,
.skills,
.contact,
.education,
.blog {
  font-size: 16px;
  font-weight: 200;
  margin: 2.25rem 0;
  border: 1px solid #1a1a1a;
  background-color: #1a1a1a;
  border-radius: 20px;
  overflow: auto;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}
.about .wrapped,
.experience .wrapped,
.expertise .wrapped,
.stack .wrapped,
.interests .wrapped,
.projects .wrapped,
.skills .wrapped,
.contact .wrapped,
.education .wrapped,
.blog .wrapped {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.about .section-title,
.experience .section-title,
.expertise .section-title,
.stack .section-title,
.interests .section-title,
.projects .section-title,
.skills .section-title,
.contact .section-title,
.education .section-title,
.blog .section-title {
  display: block;
  font-size: 18px;
  white-space: nowrap;
  color: #fff;
  text-transform: uppercase;
  margin: 4px;
}
.about .section-title::before,
.experience .section-title::before,
.expertise .section-title::before,
.stack .section-title::before,
.interests .section-title::before,
.projects .section-title::before,
.skills .section-title::before,
.contact .section-title::before,
.education .section-title::before,
.blog .section-title::before {
  content: "::";
  display: inline-block;
  width: auto;
  height: 1px;
  margin: 0 0.5rem 0.5rem;
}
.about .section-content,
.experience .section-content,
.expertise .section-content,
.stack .section-content,
.interests .section-content,
.projects .section-content,
.skills .section-content,
.contact .section-content,
.education .section-content,
.blog .section-content {
  padding: 1.3125rem;
  background-color: #fff;
  height: 100%;
  color: #333;
}
@media (min-width: 768px) {
  .about .section-content,
  .experience .section-content,
  .expertise .section-content,
  .stack .section-content,
  .interests .section-content,
  .projects .section-content,
  .skills .section-content,
  .contact .section-content,
  .education .section-content,
  .blog .section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.about .section-content .profile-avatar,
.experience .section-content .profile-avatar,
.expertise .section-content .profile-avatar,
.stack .section-content .profile-avatar,
.interests .section-content .profile-avatar,
.projects .section-content .profile-avatar,
.skills .section-content .profile-avatar,
.contact .section-content .profile-avatar,
.education .section-content .profile-avatar,
.blog .section-content .profile-avatar {
  display: block;
  margin: 0 auto;
}
.about .section-content .profile-avatar.rounded img,
.experience .section-content .profile-avatar.rounded img,
.expertise .section-content .profile-avatar.rounded img,
.stack .section-content .profile-avatar.rounded img,
.interests .section-content .profile-avatar.rounded img,
.projects .section-content .profile-avatar.rounded img,
.skills .section-content .profile-avatar.rounded img,
.contact .section-content .profile-avatar.rounded img,
.education .section-content .profile-avatar.rounded img,
.blog .section-content .profile-avatar.rounded img {
  border-radius: 50%;
}
@media (min-width: 768px) {
  .about .section-content .profile-avatar,
  .experience .section-content .profile-avatar,
  .expertise .section-content .profile-avatar,
  .stack .section-content .profile-avatar,
  .interests .section-content .profile-avatar,
  .projects .section-content .profile-avatar,
  .skills .section-content .profile-avatar,
  .contact .section-content .profile-avatar,
  .education .section-content .profile-avatar,
  .blog .section-content .profile-avatar {
    flex: 1 0 15%;
    margin-right: 1.5rem;
  }
  .about .section-content .profile-avatar img,
  .experience .section-content .profile-avatar img,
  .expertise .section-content .profile-avatar img,
  .stack .section-content .profile-avatar img,
  .interests .section-content .profile-avatar img,
  .projects .section-content .profile-avatar img,
  .skills .section-content .profile-avatar img,
  .contact .section-content .profile-avatar img,
  .education .section-content .profile-avatar img,
  .blog .section-content .profile-avatar img {
    width: 150px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about .section-content .profile-avatar .avatar,
  .experience .section-content .profile-avatar .avatar,
  .expertise .section-content .profile-avatar .avatar,
  .stack .section-content .profile-avatar .avatar,
  .interests .section-content .profile-avatar .avatar,
  .projects .section-content .profile-avatar .avatar,
  .skills .section-content .profile-avatar .avatar,
  .contact .section-content .profile-avatar .avatar,
  .education .section-content .profile-avatar .avatar,
  .blog .section-content .profile-avatar .avatar {
    margin: 0 auto;
  }
}
.about .section-content ul,
.experience .section-content ul,
.expertise .section-content ul,
.stack .section-content ul,
.interests .section-content ul,
.projects .section-content ul,
.skills .section-content ul,
.contact .section-content ul,
.education .section-content ul,
.blog .section-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.about .section-content ul li,
.experience .section-content ul li,
.expertise .section-content ul li,
.stack .section-content ul li,
.interests .section-content ul li,
.projects .section-content ul li,
.skills .section-content ul li,
.contact .section-content ul li,
.education .section-content ul li,
.blog .section-content ul li {
  margin-bottom: 0.5rem;
  margin-left: 0rem;
  padding: 0 5px 5px 1.5rem;
  outline: 1px solid #808080;
  border-radius: 4px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  border-left: 15px solid #808080;
}
@media (min-width: 1024px) {
  .about .section-content,
  .experience .section-content,
  .expertise .section-content,
  .stack .section-content,
  .interests .section-content,
  .projects .section-content,
  .skills .section-content,
  .contact .section-content,
  .education .section-content,
  .blog .section-content {
    font-size: 1rem;
  }
}

.cards-definitions {
  display: block;
}
.cards-definitions .card,
.cards-definitions dt {
  background-color: #808080;
  color: #fff;
  padding: 1.3125rem;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #808080;
  border-bottom-width: 0;
}
.cards-definitions dd {
  background-color: #fff;
  color: #333;
  padding: 1.3125rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #ddd;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotation {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  25% {
    opacity: 0.5;
    transform: rotateY(45deg);
  }
  50% {
    opacity: 0.75;
    transform: rotateY(30deg);
  }
  75% {
    opacity: 0.9;
    transform: rotateY(15deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0);
  }
}/*# sourceMappingURL=styles.css.map */