body {
  
  background-image: url(../images/bg4.jpg);
	background-repeat: no-repeat;
	background-size:auto;
	background-attachment: fixed;
	background-position: top;
  /* Chrome 10-25, Safari 5.1-6 */
  /* background: linear-gradient(to right, #928DAB, #00d2ff); */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  overflow:hidden;
	font-family: 'Felipa', cursive;
}

.circle {
  height: 100px;
  width: 100px;
  position: absolute;
  border-radius: 80%;
  animation: scaleCircle 1s linear;
  animation-fill-mode: forwards;
}

h1 {
	font-size: 60px;
}

#text {
	
  font-size: 30px;
  vertical-align: middle;
  color: #000;
  position: relative;
  top: 10%;
  margin: 0 auto;
padding: 20px;
width: 50%;
background-color: rgba(255,255,255,0.60);
	border-radius: 25px;
}

.content {
  height: 100%;
  width: 100%;
  position: absolute;
  text-align: center;
}

@keyframes scaleCircle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(150);
    opacity: 0;
  }
}
