
body {
    width:800px;
    padding-left: 10%;
	padding-right: 10%;
	background-color: #F4F4F5;
	color: #000000;
	font-family: 'Roboto', sans-serif;
	overflow: hidden;
}

.section1 {
	vertical-align: bottom;
	align-items: center;
	text-align: center;
	padding: 30% 0 0 0;
}

.add-section {
    vertical-align:center;
	font-size: 14px;
	color: #0A67A9;
	margin: 20px auto;
	line-height: 22px;
	font-weight: 400;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
}

.add-section2 {
	font-size: 14px;
	color: #0A67A9;
	margin: 20px auto;
	line-height: 22px;
	font-weight: 400;
	font-style: normal;
	font-family: 'Roboto', sans-serif;
}

.add-section h4 {
	font-size: 20px;
	margin: 5px 0;
}

.coming-section {
	color: #0A67A9;
	text-align: center;
	font-weight: 100;
	font-size: 30px;
	font-style: italic;
	font-family: 'Kaushan Script', cursive;
	padding-bottom: 1%;
	padding-top: 2%;
}

.copy-right {
	font-size: 14px;
	text-align: center;
	color: #0A67A9;
}





@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes chill {
    from {opacity: 1;}
    to {opacity: 1;}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}

p {
  position: absolute;
  top: 10px;
  left: 12px;
  color: white;
  opacity: 0;
  font-family: "Source Sans Pro";
  animation: fadeIn 2s ease-out, chill 2s 2s, fadeOut 2s 4s;
}

// Twitter
.twitter {
  &:hover {
    a {
      transform: rotate(-45deg) scale(1.05);
    }
    
    i {
      color: lighten(#00ACED, 10%);
    }
  }
  
  a {
    bottom: -40px;
    right: -75px;
    transform: rotate(-45deg);
  }
  
  i {
    bottom: 7px;
    right: 7px;
    color: #00ACED;
  }
}

.social-icon {
  a {
    position: absolute;
    background: white;
    color: white;
    box-shadow: -1px -1px 20px 0px rgba(0,0,0,0.30);
    display: inline-block;
    width: 150px;
    height: 80px;  
    transform-origin: 50% 50%;
    transition: .15s ease-out;
  }
  
  i {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
    transition: .15s ease-out;
  }
}

// YouTube 

.youtube {
  &:hover {
    a {
      transform: rotate(45deg) scale(1.05);
    }
    
    i {
      color: lighten(#E62117, 10%);
    }
  }
  
  a {
    bottom: -40px;
    left: -75px;
    transform: rotate(45deg);
  }
  
  i {
    bottom: 7px;
    left: 7px;
    color: #E62117;
  }
}


