body {
  background-image: url("SPIRAL.gif");
  background-size: cover;     
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  /* 1. Import your font */
  height: 100vh;      /* viewport height */
  overflow-y: scroll; /* always show vertical scroll */
}
.pfp {
  position: absolute;

  top: -40px;   /* moves it above the box */
  left: -40px;  /* moves it to the left */

  width: 90px;
  height: 90px;

  border-radius: 50%; /* makes it a circle */
  object-fit: cover;

  border: 3px solid white;

  box-shadow:
    0 0 15px rgba(255,255,255,0.6),
    0 0 30px rgba(255,255,255,0.3);
}
