body{
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	font-family: 'Roboto';
	width:100%;
	height:100%;
	overflow-x:hidden;
	overflow-y:hidden;
}
.box{
  position: absolute;
  width: 100%;
  #background: rgba(256, 256, 256);
  padding: 0;
  text-align: center;
  margin: auto;
  margin-top: 0;
  color: #5A415D;
  font-family: 'Roboto';
  z-index: 2;
}
.verona{
	font-family: 'Merienda';
	font-size: 5.2em;
	color: #5A415D;
	display: block;
	font-weight: bold;
	text-shadow: 0 0 99px rgba(206,205,194,0.5);
}
.contact{
	font-family: 'Roboto';
	font-size: 1.1em;
	color: #5A415D;
	display: block;
	font-weight: bold;
	text-align: center;
}
ul{
  margin: 0;
  padding: 0;
}
.box li{
  display: inline-block;
  margin: 6px;
  list-style: none;
}
.box li a{
  color: #5A415D;
  text-decoration: none;
  font-size: 60px;
  transition: all ease-in-out 150ms;
}
.box li a:hover{
  color: #838067;
}
/* BG - modified from: https://codepen.io/venkat_pataballa/pen/ReLObK */
.bg-container{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height: 100%;
  z-index: 1;
  background:rgba(255,255,255);
}
.bg-pulse{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.bg-pulse li{ 
  position:absolute;
  list-style-type:none;
  width:20px;
  height:20px;
  background:rgba(90,65,93);
  animation: animate 25s linear infinite;
  bottom:-150px;
}
.bg-pulse li:nth-child(1){
  left:26%;
  width:82px;
  height:82px;
  animation-delay:0;
}
.bg-pulse li:nth-child(2){
  left:9%;
  width:22px;
  height:22px;
  animation-delay:2.1s;
  animation-duration:12s;
}
.bg-pulse li:nth-child(3){
  left:72%;
  width:22px;
  height:22px;
  animation-delay:3.5s;
}
.bg-pulse li:nth-child(4){
  left:45%;
  width:62px;
  height:62px;
  animation-delay:0.1s;
  animation-duration:18s;
}
.bg-pulse li:nth-child(5){
  left:61%;
  width:22px;
  height:22px;
  animation-delay:0s;
}
.bg-pulse li:nth-child(6){
  left:77%;
  width:110px;
  height:110px;
  animation-delay:3.2s;
}
.bg-pulse li:nth-child(7){
  left:32%;
  width:150px;
  height:150px;
  animation-delay:6s;
}
.bg-pulse li:nth-child(8){
  left:53%;
  width:25px;
  height:25px;
  animation-delay:15.5s;
  animation-duration:45s;
}
.bg-pulse li:nth-child(9){
  left:19%;
  width:15px;
  height:15px;
  animation-delay:0s;
  animation-duration:35s;
}
.bg-pulse li:nth-child(10){
  left:85%;
  width:50px;
  height:50px;
  animation-delay:0;
  animation-duration:12s;
}
.bg-pulse li:nth-child(11){
  left:12%;
  width:35px;
  height:35px;
  animation-delay:3s;
  animation-duration:22s;
}
.bg-pulse li:nth-child(12){
  left:56%;
  width:16px;
  height:16px;
  animation-delay:2.1s;
  animation-duration:21s;
}
.bg-pulse li:nth-child(13){
  left:56%;
  width:37px;
  height:37px;
  animation-delay:0s;
  animation-duration:15s;
}
.bg-pulse li:nth-child(14){
  left:81%;
  width:23px;
  height:23px;
  animation-delay:4.4s;
  animation-duration:27s;
}
.bg-container li 14:hover{
  color: #ffffff;
}
@-webkit-keyframes animate{
  0%{
    -webkit-transform:translateY(0) rotate(0deg);
    opacity:0.85;
    border-radius:0;
  }
  100%{
    -webkit-transform:translateY(-950px) rotate(635deg);
    opacity:0;
    border-radius:50%;
  }
}
