@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, button, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* END RESET CSS */ 
/* GLOBAL STYLES */
body {
  background: #333;
  padding: 2em;
  display: flex;
  width: 100vw;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  font-size: 18px;
  color: whitesmoke;
  font-family: "Poppins", sans-serif;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  gap: 2em;
  padding: 2em;
}

.profile__picture {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 0;
  border-radius: 50%;
  padding: 5px;
}
.profile__picture::before {
  position: absolute;
  box-sizing: border-box;
  content: "";
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(186deg, rgb(28, 72, 158) 25%, rgb(255, 115, 0) 50%, rgb(16, 113, 218) 75%);
  animation: rotate 5s linear infinite;
}
.profile__picture img {
  border: 2px solid #1c489e;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 50%;
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.profile__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1em;
  line-height: 1.25em;
}

.profile__content h2 {
  overflow: hidden;
  border-right: 0.15em solid #ff7300;
  white-space: nowrap;
  letter-spacing: 0.15em;
  animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}
.profile__content h2 span {
  color: #ff7300;
}

.profile__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
.profile__socials a {
  font-size: 3em;
  color: whitesmoke;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #ff7300;
  }
}
/* FOOTER LOGO CROLWEB */
.footer__logo img {
  filter: drop-shadow(0px 0px 2px whitesmoke);
  width: 100px;
}/*# sourceMappingURL=style.css.map */