body {
      margin: 0
      height: 100vh; /* ensures full viewport height */
      background-color: #DCDCDC; /* Gainsboro Grey*/
      background-image: url('../images/background.jpg');
      background-repeat: no-repeat;
      background-position: top right;
      background-attachment: fixed;
      background-size: contain;
      font-family: Arial, sans-serif;
      text-align: left;
      padding: 60px;
    
    }
.nav-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent overlay */
  position: relative;
  z-index: 10;
}

.nav-bar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-bar a:hover {
  background-color: white;
  color: black;
}
    h1 {
      font-size: 3em;
      color:#4B0082;
      margin-bottom: 20px;
    }
 h2 {
      font-size: 3em;
      color:#7851A9;
      margin-bottom: 20px;
    }
h3 {
      font-size: 3em;
      color:#9932CC;
      margin-bottom: 20px;
    }
    p {
      font-size: 1.4em;
      margin-bottom: 30px;
    }

    a.button {
      display: inline-block;
      padding: 12px 24px;
      background-color: #CDAA7D;
      color: #6B4F2C;
      text-decoration: none;
      font-weight: bold;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }
#contactBtn {
  background-color: #0077cc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

#contactBtn:hover {
  background-color: #005fa3;
}
