body, p {
    background-color: transparent;
    margin: top;
	padding-right: 10px;
    text-align: center;
    color: #e7e2dd;
    font-family: Comic Sans MS, Verdana, sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-shadow: 0px 0px 1px #4b4b4b;
}
  
  h1 {  
    color: #e7e2dd;
	  font-family: "Amatic SC", comic sans ms; 
      font-size: 30pt;
      font-weight: 600;
    display: inline;
    text-shadow: 0px 0px 1px #4b4b4b;
    letter-spacing: 0.5pt;
  }
  
  h2 {  
    color: #e7e2dd;
	  font-family: "Amatic SC", comic sans ms;
      font-size: 20pt;
      font-weight: bold;
    display: inline;
    text-shadow: 0px 0px 1px #4b4b4b;
     letter-spacing: 0.5pt;
  }
  h3 {  
    color: #e7e2dd;
	  font-family: "Amatic SC", comic sans ms;
      font-size: 10pt;
      font-weight: bold;
    display: inline;
    text-shadow: 0px 0px 1px #4b4b4b;
    letter-spacing: 0.5pt;
  }
  ul {
    list-style-image:url('paw.png');
    text-align: left;
    padding: 0px;
    margin-left: 45px;
  }
  
  a, a:visited, a:active { 
    color: #e4cf72; 
    font-weight: bold; 
    text-decoration: none; 
    letter-spacing: 0.9pt;
     }
  a:hover { 
    color: #5869b5; 
    font-weight: bold; 
    text-decoration: none; 
    letter-spacing: 0.9pt;
     }
  
/* Form Container */
.contact-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background-color: transparent;
  border-radius: 8px;
}

/* Form Labels */
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

/* Input Fields and Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 10pt; /* Prevents auto-zoom on iOS */
  font-family: Comic Sans MS, Verdana, sans-serif;
  box-sizing: border-box; /* Keeps padding inside the width */
}

/* Focus State for Accessibility */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0066cc;
  outline: none;
}

/* Submit Button */
.contact-form button {
  width: 25%;
  padding: 5px;
  background-color: #e4cf72;
  font-family: Comic Sans MS, Verdana, sans-serif;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-size: 10pt;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #5869b5;
}
  * {
  scrollbar-width: thin;
  scrollbar-color: #4B4B4B black;
}
*::-webkit-scrollbar {
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: #4B4B4B;
}
*::-webkit-scrollbar-thumb {
  background-color: #4B4B4B;
  border-radius: 20px;
  border: 3px;
}