/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./src/style.css ***!
  \***********************************************************************************************************/
html {
  background: linear-gradient(to right, #05174d, #55075c);
}

section {
  margin: 15px auto;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section#bio {
  font-size: 1.5em;
  text-align: center;
  color: white;
}

section#bio > img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: white 0px 0px 10px 2px;
}

section#bio > p {
  margin-top: 10px;
}

section#contribs {
  margin-left: 50vw;
  margin-top: 20px;
  width: 40vw;
  transform: perspective(50vw) rotateX(20deg) rotateY(-15deg);
  box-shadow: 0 4px 6px 4px rgba(134, 134, 189, 0.874);
}

section#contribs > article {
  padding: 15px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.416);
  border-radius: 8px;
  transition: height 0.5s ease, width 0.5s ease, transform 0.2s ease,
    background-color 0.2s ease;
}

section#contribs > article:hover {
  background-color: rgba(255, 255, 255, 0.543);
  transform: scale(1.3) perspective(100vw) rotateX(5deg) rotateY(-15deg);
}

section#message {
  height: 50vh;
  text-align: center;
  color: white;
}

section#message > span {
  font-weight: bold;
  font-size: 1.2em;
}


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