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

body {
  background-color: #000000;
  color: white;
  font-family: Verdana;
  
}

.bodyHome {
  
  text-align: center;
  
}

.button {
  background-color: #4CAF50; /* Green background */
  border: none; /* Remove default border */
  color: white; /* White text */
  padding: 15px 32px; /* Spacing inside the button */
  text-align: center; /* Center the text */
  text-decoration: none; /* Remove default link underline */
  display: inline-block; /* Allows setting width/height and margins */
  font-size: 16px; /* Increase font size */
  margin: 4px 2px; /* Add some margin */
  cursor: pointer; /* Change cursor to pointer on hover */
  border-radius: 8px; /* Rounded corners */
}

.HomeButton {
  background-color: #4CAF50; /* Green background */
  border: none; /* Remove default border */
  color: white; /* White text */
  padding: 15px 32px; /* Spacing inside the button */
  text-align: center; /* Center the text */
  text-decoration: none; /* Remove default link underline */
  display: inline-block; /* Allows setting width/height and margins */
  font-size: 16px; /* Increase font size */
  margin: 4px 2px; /* Add some margin */
  cursor: pointer; /* Change cursor to pointer on hover */
  border-radius: 8px; /* Rounded corners */
}

.button:hover {
  
  background-color: #28702B;
  
  }
  
.button:active {
  
  background-color: #236125;
  
  }
  
  .textLink {
    
    color: yellow;
    
    }
    
  .textLink:active {
    
    color: blue;
    
    }
  
  
