body{
  background: #000;
    display: flex;
    justify-content:center; 
    font-family: 'Raleway', cursive;
    font-size: 100px;
  }
  
  .wrapper-main {
    width: 1200px;
    padding-top: 3%;
    /*background-color: blue;*/
    align-items: center;
  }

  #content {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
    line-height: 0.8;
  }
  #content span{
    font-size: 80px;
  }

  @media (max-width: 1200px) {
    .wrapper-main {
     width: 100%;
    /*background-color: green;*/
    }
  }
  @media (max-width: 992px) {
    .wrapper-main {
     width: 100%;
    /*background-color: orange;*/
    }
  }
  @media (max-width: 768px) {
    .wrapper-main {
     width: 100%;
    /*background-color: green;*/
    }
  }
  @media (max-width: 600px) {
    .wrapper-main {
      width: 100%;
      /*background-color: red;*/
    } 
  }
  @media (max-width: 400px) {
    .wrapper-main {
      width: 100%;
      font-size: 20px;
      /*background-color: yellow;*/
    }
    #content {
      font-size: 20px;
      font-weight: bold;
      letter-spacing: 3px;
      text-align: center;
      line-height: 0.8;
    }
    #content span{
      font-size: 60px;
    }
  
  }