body,
html {
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Roboto Mono", serif;
  font-weight: 500;
  font-style: italic;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #010e47;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-header {
  max-width: 150px;
  height: auto;
}

.contact-title {
  text-align: center;
  margin: 20px;
}
.contact-form {
  background-color: white;
  padding: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  margin: auto;
}
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: #4caf50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.btn-container {
  display: flex;
  justify-content: center;
}

.btn {
  background-color: #010e47;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin: 20px;
  text-align: center;
  display: inline-block;
  border-radius: 3px;
}

.btn:hover {
  background-color: #555;
}

@media screen and (max-width: 600px) {
  .header {
    padding: 10px;
  }

  .logo-header {
    max-width: 120px;
  }

  .form-control {
    width: 95%;
    padding: 15px;
  }
}
