.jeff{
  border-color: red;
  border-width: 1vw;
  border-style: solid;
  border-radius: 3vw;

  background-color: white;

  width: 20vw;
  height: 20vw;

  transition: transform .1s;
}

.jeffpfp{
  max-width: 20vw;
  max-height: 20vh;
}

.jeff:active{
  transform: scale(.7);
  transition: transform .1s;
}

.jeff:active .jeffpfp{
  filter: hue-rotate(220deg);
}

.jeffpfp{
  filter: hue-rotate(0deg);
}

h1{
  color: black;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 100vh;
}