:root {
  --blue: #0e0620;
  --white: #fff;
  --green: #2ccf6d;
}

html,
body {
}

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);
  font-size: 16px;
  background: #eee;
}

.nav {
    margin-bottom: 60px;
}
.nav li {
    display: inline-block;
    margin-right: 10px;
}

.nav a {
    color: #666;
}

button {
  font-family: "Nunito Sans";
}

svg {
  width: 100%;
  visibility: hidden;
}

main {
    width: 850px;
    background: #fff;
    padding: 20px 30px 40px;
    border-radius: 12px;
    margin-top:80px;
    box-shadow: 1px 1px 3px 3px #ccc;
}

.figs {
    float: left;
    margin-top: 36px;
    opacity: 0.55;
    width:260px;
}

.container {
    width: 550px;
    float: left;
    margin-left: 15px;
}

.container h1 {
    font-size: 60px;
    margin: 45px 0px 20px;
    font-weight: bold;
    color: #dc6127;
}
.container .xxtst {
    font-size: 45px;
    margin: 62px 0px 25px;
    font-weight: bold;
    color: #dc6127;
}
.container h2 {
    font-weight: bold;
    font-size: 22px;
}

.container p {
    font-size: 18px;
}

.container .btn {
  z-index: 1;
  overflow: hidden;
  background: transparent;
  position: relative;
  padding: 8px 50px;
  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;
}
.btn.green {
    border: 4px solid #b1936c;
    color: var(--blue);
    margin-top: 10px;
}
.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;
}
.btn.green:hover {
  color: var(--white);
  background: #b1936c;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn.green:hover:before {
  width: 100%;
}
