@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Quicksand');

body {
  font-family: 'Open Sans';
}

x {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('https://images.unsplash.com/photo-1521020773588-3b28297b1e70?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=e0973395dd1655ea3b8fb83fa95c02c2&auto=format&fit=crop&w=1469&q=80');
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

header h2 {
  position: absolute;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Quicksand'
}

main {
  max-width: 500px;
  width: 90%;
  margin: 25px  auto;
  text-align: center;
  color: #222;
}

main p {
  margin: 20px 0;
}

main hr {
  border: none;
  height: 2px;
  width: 200px;
  margin: 10px auto;
  background: #26c281;
}

.wrapper p {
  text-align: center;
  margin: 0 0 10px;
  color: #777;
  font-size: 12px;
}

.wrapper {
  position: fixed;
  width: 260px;
  bottom: 75px;
  right: 25px;
  padding: 10px;
  border: 2px solid #eee;
  background: whitesmoke;
  border-radius: 3px;
  display: none;
}

.fa-times {
  color: #222;
  opacity: 0.1;
  transition: all 0.2s;
}

.fa-times:hover {
  cursor: pointer;
  opacity: 1;
}

#whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  border: none;
  border-radius: 50%;
  background: #2ecc71;
  color: #fcfcfc;
  font-size: 22px;
  height: 40px;
  width: 40px;
  outline: none;
}

#whatsapp:hover {
  cursor: pointer;
}

#msg {
  display: block;
  height: 150px;
  width: 100%;
  border: none;
  border-radius: 3px;
  background: #fff;
  resize: none;
  outline: none;
  padding: 5px;
  font-family: 'Open Sans';
  letter-spacing: 1px;
}

#sendMsg {
  display: block;
  border: none;
  width: 100%;
  margin: 10px 0 0;
  background: #26c281;
  color: #fcfcfc;
  padding: 5px 0;
  border-radius: 3px;
  transition: background 0.2s;
}

#sendMsg:hover {
  cursor: pointer;
  background: #219b68;
}