
h1{

    background-color: turquoise;
    border-radius  : 100px;
    text-align: center;

}
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .loading-square {
    width: 50px;
    height: 50px;
    background-color: #333;
    animation: bounce 2s infinite ease-in-out, flip 2s infinite linear;
    border-radius: 8px; /* Optional for rounded corners */
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-100px); /* Adjust bounce height */
    }
  }
  
  @keyframes flip {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg); /* Full 360-degree flip */
    }
  }
  
/* Add a spinner */
#loading-screen h2 {
    font-size: 24px;
    color: #333;
    animation: pulse 1.5s infinite;
  }
  
  /* Pulse animation for the text */
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  /* Fade-out effect for the loading screen */
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  body {
    background-color: lightblue;
    }

    .div-1 {
      color: hsl(235, 100%, 50%); /* HSL value */
      }
      button {
        background-color: #00a8d6; /* Green */
        border: none;
        border-radius: 20px;
        color: white;
        padding: 10px 22px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 14px;
        }

        #spider-button {
          background-color: #007BFF; /* Initial color */
          color: white;
          padding: 10px 20px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          box-shadow: none; /* No shadow initially */
          transition: all 0.2s ease; /* Smooth transition */
        }
      
        #spider-button:hover {
          background-color: #0056b3; /* Darker shade of blue on hover */
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
        }

        .hover-shrink {
          transition: transform 0.3s ease;
      }
      
      .hover-shrink:hover {
          transform: scale(0.95);
      }

      .hover-enlarge {
        transition: transform 0.3s ease;
    }
    
    .hover-enlarge:hover {
        transform: scale(1.05);
    }
    

  a {
  color: inherit; 
  text-decoration: none; /* Removes underline */
}

a:visited {
  color: inherit;        /* Stops it turning purple and red which is annoying */
}

a:hover {
  cursor: pointer;  
}

a:active {
  color: inherit;
}