/*--------------------
Pagina
--------------------*/
.pagina {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 450px;
  z-index: 1;
  font-family: Roboto, sans-serif;
  background: #0D0C1E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/*--------------------
Body
--------------------*/
html,
body {
  height: 100%;
  background: linear-gradient(0, #202239, #8595AC);
}

::selection {
  background: #CDD4DE;
}

/*--------------------
Imagem
--------------------*/
img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: auto;
  z-index: -1;
  transform: scale(1.1);
}

/*--------------------
Conteudo
--------------------*/
.conteudo {
  text-align: center;
  color: #000000;
}
.conteudo h1 {
  text-align: center;
  font-weight: 600;
  font-size: 165px;
  line-height: 0.5;
  margin-bottom: -3px;
  opacity: 1;
}
.conteudo h2 {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 6px;
  opacity: 1;
}
.conteudo p {
  font-weight: 300;
  font-size: 15px;
  opacity: 1;
  margin-bottom: 140px;
}
.conteudo a {
  display: inline-block;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #000000;
  padding: 8px 14px;
  border-radius: 4px;
  opacity: 0.4;
  cursor: pointer;
}

/*--------------------
Fundo Conteudo
--------------------*/

.fundo-conteudo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 660px;
  height: 360px;
  z-index: 1;
  font-family: Roboto, sans-serif;
  background: #E4E4E4;
  opacity: 0.5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/*--------------------
Efeito botao
--------------------*/


.center {
  top: 75%;
  left: 46%;
  position: absolute;
}

.btn {
  width: 180px;
  height: 60px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #91C9FF;
  outline: none;
  transition: 1s ease-in-out;
}

svg {
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
}

.btn:hover {
  transition: 1s ease-in-out;
  background: #4F95DA;
}

.btn:hover svg {
  stroke-dashoffset: -480;
}

.btn span {
  color: white;
  font-size: 18px;
  font-weight: 100;
}



