@import url("https://fonts.googleapis.com/css?family=Jost:400,500,600&display=swap");

:root {
  --purple-solid: rgba(153, 103, 186, 1);
  --blue-solid: rgba(0, 113, 227, 1);
  --white-transparent: rgba(255, 255, 255, 0.2);
  --black-transparent: rgba(0, 0, 0, 0.2);
}

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

body {
  font-family: "Jost", sans-serif;
  min-height: 100vh;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, var(--purple-solid) 41.2%, var(--blue-solid) 90%);
  /* display grid to centered container */
  display: grid;
}

.container {
  width: 100%;
  height: auto;
  /* margin auto related to display grid to centered */
  margin: auto;
  padding-bottom: 50px;
}

.title {
  width: 100%;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
}

.title h1 {
  margin: 0 20px 0 20px;
  text-align: center;
  text-transform: uppercase;
  color: white;
}

.title img {
  width: 50px;
  height: 50px;
}

.container-contributors {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.contributors-card {
  height: 300px;
  width: 250px;
  min-width: 200px;
  min-height: 250px;
  margin: 30px;
  background-color: white;
  box-shadow: 0 0 0 8px var(--white-transparent);
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  transition: all .5s ease-in-out;
}

.card-header-background {
  -webkit-filter: blur(30px);
  filter: blur(30px);
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100px;
}

.card-content {
  padding: 40px 10px 40px 10px;
}

.contributors-card:hover {
  transform: scale(1.1);
}

.contributors-card .picture {
  display: inline-block;
  height: 130px;
  width: 130px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}

.contributors-card:hover .picture::before {
  height: 100%;
}

.contributors-card .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white-transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-shadow: 0 8px 8px var(--black-transparent);
}

.contributors-card .picture img {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
  background-position: center;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.contributors-card:hover .picture img {
  box-shadow: 0 0 0 14px var(--purple-solid);
  transform: scale(0.7);
}

.contributors-content h4.role,
.contributors-content h3.name {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.contributors-content h4.role {
  color: #636b6f;
}