body {
    background: #00091B url('bg_moc_design.jpg');
    background-size: cover;
    background-position: center center;
    color: #fff;
  }
  
  

  
  .wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease;
    -webkit-animation: fadeIn 1000ms ease;
    width: 100%; 
  }

  .logo{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  
  h1 {
    font-size: 5rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    text-align: center;
  }

  h2 {
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
  }
  
  .dot {
    color: #DDB240;
  }
  
  p {
    text-align: center;
    margin: 2.1rem;
    font-family: 'Muli', sans-serif;
    font-weight: normal;
    
  }
  
  .icons {
    text-align: center;
    
  }
  
  .icons i {
    color: #00091B;
    background: #fff;
    height: 15px;
    width: 15px;
    padding: 13px;
    margin: 0 10px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
  }
  
  .icons i:hover, .icons i:active {
    color: #fff;
    background: none;
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;
    
  }