/* 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." */

<head>
   <style>
      /* Enable smooth scrolling for the entire page */
      html {
         scroll-behavior: smooth;
      }

      /* Set the background color and center all text */
      body {
         background-color: darkorange;
         background-size: cover;
         font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
         text-align: center;
         margin: 0; /* Removes default margins */
      }
      
      /* Style list items within the body */
      ul {
         list-style-type: none; /* Removes bullets from the list */
         padding: 0; /* Removes default padding from the list */
      }

      li {
         margin-bottom: 8px; /* Adds space between list items */
      }

      
      p, h1, h2, ul {
         padding: 10px;
      }

      .hover-text {
         font-size: 25px;
         color: black;
		 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
         transition: transform 0.3s ease, color 0.3s ease; 
      }

      .hover-text:hover {
         transform: scale(1.1); 
		 text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.5);
         color: white; 
      }
	   a {
         color: black; 
         text-decoration: none;
		 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
         transition: transform 0.3s ease, color 0.3s ease;
      }

      a:hover {
		 transform: scale(1.1);
         color: yellow;
		 text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.5);
	   }
   </style>

   <!-- Import Google Font -->
   <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>