/* CSS*/ 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic styling */
html {
  height: 100%;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  height: 100%;
}

.bg {
  background-image: url('https://bowmansoftwaresolutions.com/images/IMG_7216.JPG');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 100% 100%;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

header {
  text-align: center;
  padding: 20px 0 0 0;
  color: #333;
}

.about-me,
.image,
.email-response {
  margin-bottom: 30px;
}

.about-me {
  width: 100%;
  color: #333;
}

.email-response {
  width: 50%;
  color: #333;
}

.image img {
  max-width: 100%;
  height: auto;
}

form {
  margin-top: 20px;
}

label,
input,
textarea,
button {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

label {
  font-weight: bold;
}

button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
