/* 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: black;
  background-image: url("upshot-red.jpg");
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image fills the screen */
    background-attachment: fixed; /* Keeps image still while scrolling */
  font-size: 22px;
  color: white;
  font-family: Verdana;
}

h1 {
    font-size: 60px;
    margin: 20px;
    padding: 110px;
}


.contact-btn {
  /* Layout and Size */
  display: inline-block;
  padding: 12px 24px;
  
  /* Colors and Borders */
  background-color: red; /* Primary brand color */
  color: #ffffff;            /* Text color */
  border: none;
  border-radius: 5px;        /* Rounded corners */
  
  /* Typography */
  text-decoration: none;     /* Removes underline from <a> tags */
  font-size: 16px;
  font-weight: bold;
  
  /* Interaction */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect for interactivity */
.contact-btn:hover {
  background-color: black;
}