/* Reset */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

div,
span,
header,
footer,
main,
nav,
section,
article,
aside,
figure,
form,
address,
button,
ul,
li,
a,
data {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
}

* {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

html {
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  background: url(background.webp) repeat-x top left;
}

::-moz-selection {
  color: #FFF;
  background: #0b6156;
}

::selection {
  color: #FFF;
  background: #0b6156;
}

.green {
  color: #0b6156;
}

.black {
  color: black;
}

p {
  font: normal 400 16px/22px "Open Sans", sans-serif;
}

header {
  width: 100%;
  padding: 20px 50px;
  margin: 0 0 20px 0;
  background: #0b6156;
}
header .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
header h1 {
  font: normal 700 20px/24px "Open Sans", sans-serif;
  color: white;
  margin: 5px 0 0 10px;
}
header h1 small {
  font: normal 300 14px/16px "Open Sans", sans-serif;
}

.welcomeMsg {
  width: 50%;
  border: 1px solid #cacaca;
  border-radius: 5px;
  padding: 10px;
  margin-left: 50px;
  background: white;
}

form {
  width: 70%;
  margin: 20px 50px 0 auto;
}
form .inputDefault {
  width: 100%;
  height: 40px;
  margin: 0 0 10px 0;
  padding: 0 20px;
  font: normal 400 16px/18px "Open Sans", sans-serif;
  color: black;
  border: 0;
  border-radius: 5px;
  background: #e7ffe7;
}
form .inputDefault::-webkit-input-placeholder, form .textAreaDefault::-webkit-input-placeholder {
  font: normal 400 16px/18px "Open Sans", sans-serif;
  color: black;
}
form .sendButton {
  width: 100%;
  height: 40px;
  font: normal 700 18px/18px "Open Sans", sans-serif;
  color: white;
  border: 0;
  border-radius: 5px;
  margin: 10px 0 0 0;
  background: #0b6156;
  cursor: pointer;
}

@media (max-width: 425px) {
  header {
    padding: 20px;
  }
  .welcomeMsg {
    width: 85%;
    margin-left: 20px;
  }
  form {
    width: 85%;
    margin: 20px 20px 0 auto;
  }
}/*# sourceMappingURL=style.css.map */