body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
}
body,
html {
  height: 100%;
  color: #fff;
  line-height: 1.8;
}

.container {
  background-color: #32353d;
  margin: 0;
  width: 100%;
  height: 100%;
}

h1 {
  font-size: x-large;
}

h2 {
  font-size: large;
}

header {
  background-color: #d6d6d6;
  color: #000;
  height: auto;
  margin: auto;
  padding: 12px;
}

.header-content {
  max-width: 90%;
  margin: auto;
  margin-top: 4px;
}

.header-content img {
  width: 100%;
  justify-content: center;
  height: auto;
}

.content {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

/*Our Services*/
.service-element{
  display:flex; 
  gap: 4px;
}

.services-container {
  padding: 8px 32px;
  background-color: #1d1f24;
}

.service-element p, .service-element h2 {
  margin: 0;
}

.service-element p {
  padding-top:4px;
}

.section-title {
  text-align: center;
  margin: 1em 0;
}

/* form styles */
input[type=text], input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-bottom: 2px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

form {
  border-radius: 5px;
  color: #fff;
}

.footer {
  background-color: #1d1f24;
  padding: 20px;
}

.space {
  height:20px;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

.header-content {
  max-width: 66%;
}

.header-content img {
  width: 25%;
  height: 25%;
}

.content {
  max-width: 66%;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

}