@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');
* {
  padding: 0px;
  margin: 0px;
}
body {
  background: #00071C;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  padding-top:50px;
  /*min-height: 100vh;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* optional, to stack elements */
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
}


ul {
   position: relative;
   display: flex;
   /*transform: rotate(-25deg) skew(25deg);*/
   transform-style: preserve-3d;
}
ul li {
  position: relative;
  list-style: none;
  width: 60px;
  height: 60px;
  margin: 0px 30px;
}
ul li:before{
  content: '';
  position: absolute;
  bottom: -10px;
  left: -5px;
  width: 100%;
  height: 10px;
  background: #0f2032;
  transform-origin: top;
  transform: skewX(-41deg);
}
ul li:after{
  content: '';
  position: absolute;
  top:5px;
  left: -9px;
  width: 9px;
  height: 100%;
  background: #0f2032;
  transform-origin: right;
  transform: skewY(-49deg);
}
ul li span{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex !important;
  background: #0f2032;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px !important;
  transition: 1.5s ease-out;
}
ul li:hover span {
  z-index: 1000;
  transition: .3s;
  color: #fff;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, .5);
}
ul li:hover span:nth-child(5){
  transform: translate(40px, -40px);
  opacity: 1;
}
ul li:hover span:nth-child(4){
  transform: translate(30px, -30px);
  opacity: .8;
}
ul li:hover span:nth-child(3){
  transform: translate(20px, -20px);
  opacity: .6;
}
ul li:hover span:nth-child(2){
  transform: translate(10px, -10px);
  opacity: .4;
}ul li:hover span:nth-child(1){
  transform: translate(0px, 0px);
  opacity: .2;
}
ul li:nth-child(1):hover span{
  background: #5865F2 !important;
}
ul li:nth-child(2):hover span{
  background: #25D366 !important;
}
ul li:nth-child(3):hover span{
  background: #FEDA77 !important;
}
ul li:nth-child(4):hover span{
  background: #1877F2 !important;
}

/*initial text*/

.container-initial-text {
	padding-top: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.text {
    padding: 10px;
    font-weight: 100;
    font-size: 40px;
    color: white;
    font-family: 'Courier New', monospace;
}

@media (max-width: 700px) {
  .text {
    font-size: 25px;
  }
}