body{
    background-image: url(MagpieBird2.jpeg);
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    width: 100%; 
    height: 100%;
    margin: 0; 
    padding: 0;
    font-family: Poppins;
    
}

.splashScreen{
    text-align: center;
    padding-top: 13%;
    
}

.loader{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100vw;
    height:150vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #333333; */
  }

  .loader::after{
    content: "";
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-top-color: rgb(0, 0, 0);
    border-radius: 50%;
    animation: spin 2s ease infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  @keyframes scroll-up {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-100%);
    }
  }