body {
    cursor: url('./cursor.png') 0 0, auto;
    margin:0;
  }

p{
  color:#fff;
}

.blavatsky{
  height:100vh;
  width:100vw;
}

.background-image {
    background-image: url('./blavatsky.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100vw;
    height: 80vh;
    background-color:white;
  }
 
  .third-eye-sees-all{
      width:100vw;
      display:flex;
      justify-content: center;
      top: 12rem;
      position: absolute;
  }

  #socket {
    position: absolute;
    width: 3rem;
    height: 2rem;
    border-radius: 50%;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #000;
    overflow: hidden;
    animation: blink 1.5s;
    animation-delay: 10s; 
}

  @keyframes blink {
    0% {
      height: 2rem; /* initial height of the eye element */
    }
    50% {
      height: 0px; /* halfway point of the animation */
    }
    100% {
      height: 2rem; /* return to the initial height */
    }
  }

  #eye {
    position: absolute;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: blue;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .pupil {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: black;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .by-line{
      width:100vw;
      text-align:center;
      top:80vh;
      position:absolute;
  }

  .project-list-outer{
    position:relative;
    height:30vh;
    width:100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top:2px solid #000;
    border-bottom:2px solid #000;
    font-family: 'Cutive Mono', monospace;
    text-transform:uppercase;
  }

  .project-list-outer a{
    color:#000;
    text-decoration:none;
  }

  .project-list-inner{
    height:80px;
    width:450px;
    border:2px solid #000;
    text-align:center;
    transition: all 0.3s linear;
  }

  a .project-list-inner{
    background-color:#fff;
  }

  a:hover .project-list-inner {
    background-color:blue;
  }

  .checkered-background {
    height: 320px;
    width: 100vw;
    background: 
      linear-gradient(45deg, black 25%, transparent 25%),
      linear-gradient(-45deg, black 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, black 75%),
      linear-gradient(-45deg, transparent 75%, black 75%);
      background-size: 4rem 4rem;
      background-position: 0 0, 0 4rem, 4rem -4rem, -4rem 0;
  }

  .SPbackground {
    height: 320px;
    width: 100vw;
    background-image: url('./spiritual-pilgrimage/verso-images/Busts.jpg');
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
  }

  .closer-background {
    height: 320px;
    width: 100vw;
    background: #282871;
  }
  
  .footer-inner{
    background-color:#000;
    color:#fff;
    width:100vw;
    height:80px;
    padding:2rem;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-family: 'Cutive Mono', monospace;
  }

  .footer-inner a{
    color:#fff;
    text-decoration:none;
    transition: all 0.3s linear;
  }

  .footer-inner a:hover{
    text-decoration:underline;
    font-style:italic;
  }

  @media only screen and (max-width: 600px) {
    .footer-inner{
      display:block;
      height:unset;
      width:unset;
    }
    .project-list-inner {
      height: auto;
      width: 280px;
    }

    .project-list-inner h1{
      font-size:1.5rem;
    }

    .by-line h1{
      font-size:1.75rem;
    }
  }