html,body {
  margin: 0;
  padding: 0;
  font-family: "Google Sans Code", monospace;
  background-color: #000;
  color: white;
}

body {
  background-image: url("../img/papita.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

header {
  background-color: #000E;
  color: white;
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 1;
}

section {
  padding: 100px 80px;
  text-align: center;
}

section div {
  border-radius: 10px;
  margin: 10px;
  background-color: #000A;
}

section div p {
  text-align: justify;
}

nav {
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

a {
  text-decoration: none;
  color: inherit;
}

nav li {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
  margin: 10px 10px;
}

.floating-char {
  position: fixed;
  margin-top: 100px;
  height: 200px;
}

.nav-links {
  display: inline-block;
  vertical-align: middle;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 40px;
  margin: 10px;
}

.service-item {
  display: inline-block;
  width: 30%;
  padding: 10px 50px;
}

.service-item img {
  height: 80px;
  width: auto;
}

form {
  margin: 10px 250px;
}

form input,
form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}