html {
  font-size: 16px;
  font-size:1rem;
  font-size: 100%
}

body {
   display: -webkit-box;
   display: flex;
   -webkit-box-align: center;
          align-items: center;
    -webkit-box-pack: center;
          justify-content: center;
    font-family: "Nunito Sans";
    color: var(--blue);
    display: block;
    background: #f1f1f1;
    font-size: 16px;
    font-size:1rem;
}

main {
    text-align: center;
    width: 80%;
    background: #fff;
    margin: 1rem auto;
    padding: 0.6rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
}
.figs {
    margin-top: 1rem;
    text-align: center;
    overflow: hidden;
}
.figs img {
    width: 60%;
}
.container h1 {
    font-size: 4em;
    margin: 0;
    font-weight: bold;
    color: #dc6127;
    text-align: center;
}
.container .xxtst {
    font-size: 1.6em;
    margin: 0;
    font-weight: bold;
    color: #dc6127;
    text-align: center;
    margin-top: 0.6rem;
}
.container h2 {
    font-weight: bold;
    padding: 0 1rem;
    font-size: 1.2rem;
    color: #444;
}
.container p {
    font-size: 1rem;
    line-height: 1rem;
}
.container .btn.green {
    border: 2px solid #b1936c;
    margin-bottom: 1.5rem;
    color: #b1936c;
    font-size: 1.1rem;
}

.container .btn {
    z-index: 1;
    overflow: hidden;
    background: transparent;
    position: relative;
    padding: 3px 35px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 2px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    font-weight: bold;
    margin: 5px 0px;
}

.container .btn.green:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #b1936c;
  z-index: -1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.container .btn.green:hover {
  color: var(--white);
  background: #b1936c;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.container .btn.green:hover:before {
  width: 100%;
}
