*, body{
    margin: 0;
    box-sizing: border-box;
}body {
  background: #d3d3d3;
  padding: 80px 0 0 0;
  overflow-x: hidden;
}

body, input, button {
  font-family: 'Roboto', sans-serif;
}

.noFill {
  fill: none;
}

header {
  width: 100%;
  height: 70px;

  position: fixed;
  padding: 10px;
  top: 0;
  left: 0;
  z-index: 5;

  background: #008044;
  box-shadow: 0px 2px 4px rgba(0, 72, 82, 0.475);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

header form{
  max-width: 700px;
  position: relative;
  margin: 0 auto;
}

header input {
  width: 100%;
  height: 50px;
  float: left;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-indent: 18px;
  padding: 0 60px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  border: 0px;
  box-shadow: none;
  outline: none;

  -webkit-appearance: none;
  -moz-appearance: none;
}

header input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

header input:-moz-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

header input::-moz-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

header input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75);
}

header button {
  width: 50px;
  height: 50px;

  position:absolute;
  top:0;
  right:0;
  z-index:2;

  border-radius: 25px;
  background: #fff;
  color: #008044;
  border: 0px;
  box-shadow: none;
  outline: none;
  cursor: pointer;

  -webkit-appearance: none;
  -moz-appearance: none;

  font-size: 18px;
}



#message{
  color: #fff;
  width: 100%;
  height: 100px;
  position: absolute;
  top: -100px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  transition: .3s ease;
}

#message span{
  display: inline-block;
  width:100%;
  position: absolute;
  bottom: 15px;
  font-size: 15px;
  text-align: center;
}
  
#answer_container{
    padding: 20px;
    max-width: 700px;
    margin: 0 auto;
}
#answer_container h1{
    margin-bottom: 20px;
    color: #008044;
}
#answer_container a{
    color: #008044;
    display: inline-block;
    margin-top:10px;
}
#answer_container a::before{
    content: "\203a";
    height:20px;
    width:20px;
    text-align: center;
    background-color: #00804470;
    color:#fff;
    display: inline-block;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 5px;

}

code, pre{
    font-family: 'Fira Mono', consolas, monospace, 'Courier New', Courier;
    border-radius: 8px;
    border-left: 2px solid gray;
}
code{
    margin: 20px 0px 20px 0px;
    padding: 20px !important;
    background-color: #0f1e1d !important;
    font-size: 12px;
}

.inline-code{
     background: darkgray;
     border: none;
     border-radius : 4px;
     font-size: 16px !important;
     color: #fff;
     height: auto;
     padding-left: 5px;
     padding-right: 5px;
     display: inline !important;
}
