* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 100svh;
  min-width: 100vh;
  font-size: 100%;
  font-family: Lato, sans-serif;
  background: #000;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #EBEBD3;
}

h1 {
  font-family: Lexend, sans-serif;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: Rubik, sans-serif;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 5px;
  margin-bottom: 10px;
  position: sticky;
  top: 0;
}
.nav .nav-item {
  display: block;
  padding: 10px;
  color: #EBEBD3;
  text-decoration: none;
  transition: background-color 0.1s ease-in-out;
  border-bottom: 2px solid transparent;
}
.nav .nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nav .active {
  border-bottom: 2px solid #8711c1;
}

.main {
  width: 100%;
  flex: 1;
}
.main .info-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 1px 1px 3px #1f1f1f;
  padding: 10px;
  text-align: center;
  transition: 0.3s ease-in-out;
  cursor: default;
}
.main .info-card * {
  margin: 0;
}
.main .info-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 1px 1px 5px #EBEBD3;
}
.main .info-card img {
  width: 30%;
  height: 100%;
  border: 2px solid #EBEBD3;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.main .info-card h1 {
  background: linear-gradient(to right, #8711c1, #1459ad);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 2px solid #000;
  border-image: linear-gradient(to right, #8711c1, #1459ad) 30;
  width: 75%;
  font-size: 4rem;
}
.main .info-card h2 {
  font-size: 3rem;
  color: transparent;
  background: linear-gradient(to bottom, #26c5f3, #f74c06);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
}
.main .info-card .brief-info {
  border-radius: 5px;
  border-inline: 2px outset #1459ad;
  padding: 5px;
  width: 50%;
  text-align: start;
}
.main .info-card .brief-info p {
  padding: 10px;
}
.main .info-card .brief-info i {
  border-right: 2px solid;
  padding-right: 10px;
  color: #1459ad;
  width: 30px;
  height: fit-content;
  margin-right: 8px;
  text-align: center;
}
.main .info-card .brief-info em {
  color: #aaa;
}
.main .info-card .brief-info a {
  display: block;
  padding: 5px;
  margin: 0 auto;
  color: #1459ad;
  font-size: 1.5rem;
  text-decoration: none;
}
.main .info-card .brief-info a:hover {
  text-decoration: underline;
}
.main .stack {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
  margin: 0;
  border-radius: 10px;
  box-shadow: 1px 1px 3px #1f1f1f;
  padding: 10px;
  text-align: center;
  transition: 0.3s ease-in-out;
  cursor: default;
}
.main .stack h1 {
  font-size: 3rem;
  background: linear-gradient(to right, #8711c1, #1459ad, #26c5f3, #f74c06);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.main .stack * {
  margin: 0;
}
.main .stack:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 1px 1px 5px #EBEBD3;
}
.main .stack .technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 100%;
  width: 100%;
}
.main .stack .technologies .stack-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: calc(50% - 10px);
  border-radius: 25px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}
.main .stack .technologies .stack-box .box-item {
  text-align: start;
}
.main .stack .technologies .stack-box .techs {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.main .stack .technologies .stack-box .frameworks {
  align-self: end;
  justify-self: end;
  color: #aaa;
}
.main .stack .technologies .stack-box.fe {
  background: linear-gradient(to right, #f74c06, #26c5f3);
}
.main .stack .technologies .stack-box.fe .frameworks {
  color: #444;
}
.main .stack .technologies .stack-box.be {
  background: linear-gradient(to right, #8711c1, #1459ad);
}
.main .stack .technologies .stack-box.sw {
  background: linear-gradient(to right, #1459ad, #26c5f3);
}
.main .stack .technologies .stack-box.msc {
  background: linear-gradient(to right, #1459ad, #f74c06);
}
.main .projects {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}
.main .projects h1 {
  width: 100%;
  text-align: center;
}
.main .projects .project {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: calc(50% - 10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 5px;
}
.main .projects .project h2 {
  border-bottom: 2px solid;
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
}
.main .projects .project .brief-info {
  flex: 1;
  width: 100%;
  height: 100%;
  padding-inline: 10px;
}
.main .projects .project a {
  color: #1459ad;
  text-decoration: none;
}
.main .projects .project a:hover {
  text-decoration: underline;
}

.footer {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}
.footer .copyright {
  margin-right: auto;
  margin-block: 0;
}
.footer .socials {
  display: flex;
  height: 100%;
}
.footer .socials .socials-item {
  display: flex;
  padding: 10px;
  color: #EBEBD3;
  text-decoration: none;
}
.footer .socials .socials-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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