/*###Desktops, big landscape tablets and laptops(Large, Extra large)####*/
@media screen and (min-width: 1024px){
    #Name{
      font-size: 30px;
      font-weight: bold;
    }
  }
  
  /*###Tablet(medium)###*/
  @media screen and (min-width : 768px) and (max-width : 1023px){
    #Name{
      font-size: 120px;
      font-weight: bold;
    }
  }
  
  /*### Smartphones (portrait and landscape)(small)### */
  @media screen and (min-width : 0px) and (max-width : 767px){
    #Name{
      font-size: 40px;
      font-weight: bold;
    }
  }