/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*
Source - https://stackoverflow.com/a
Posted by cnst
Retrieved 2025-11-29, License - CC BY-SA 3.0
*/

p {

  color: white;
}


    button {
      height: 50px;
      width: 350px;
      font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
      background-color: #4903fc; 
      color: white;              
      padding: 12px 24px;        
      border: 2px solid #fff;             
      cursor: pointer;           
      font-size: 16px;           
      transition: 0.1s ease-out;
      box-shadow: 0px 0px 50px rgb(100, 1, 227);


    }
    
    button:hover {
        border: 2px solid #4903fc;
        height: 75;
        width: 375;
        background-color: #fff;
        color: #000;
        box-shadow: 0px 0px 50px rgb(255, 255, 255)

}


body {

  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;

  background: url("y2kbg.gif") no-repeat fixed center;
  color: black;
  background-size: cover; 
  font-size: 30px;
  text-align: center

}