body {
  background-image: url(https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExNjFtb2kxbjBld3YyYTY3NXM1aWczYm5mN2htcHJtNHp6Z3BrOHQ1NiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/JKHVVuIwtt3Xhb3SjV/giphy.gif);
  background-size: cover;
}

.header {
  margin-left: 30%;
  margin-right: 30%;
  margin-top: 20px;
  padding-bottom: 10px;
  border-radius: 10px;
  border-color: black;
  border-style: solid;
  background-image: -webkit-linear-gradient(purple, orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  img {
    border-radius: 50%;
  }
}

.title{
  display: block;
  margin: 10px;
  text-align: center;
  font-size: xx-large;
  font-family: Haettenschweiler;
}

.subtitle {
  display: block;
  margin: 10px;
  text-align: center;
  font-size: larger;
  font-family: 'Brush Script MT', cursive;
}

.profileCardWrapper {
  justify-content: center;
  display: grid;
  max-width: 150px;
  img {
    grid-area: -1 / 1;
    opacity: 1;
    transition: none;
  }
  img:last-child {
    order: -1;
  }
}

.profileCardWrapper:hover {
  img:first-child {
    opacity: 0;
    transition: opacity 1.5s ease-out;
  }
}