/*
Theme Name: Spectrum Starter
Description: Contains the media queries for the responsive behaviour of the theme.
*/

  @media only screen and (min-width : 240px) {
    .site-title,
    .site-subtitle{
      text-align: center;
    }

    #mobile-menu-toggle{
      display:block;
      float:right;
    }

    .main-navigation{
      display:none;
    }
  }

  /* Custom, iPhone Retina */
   @media only screen and (min-width : 320px) {

   }

   /* Extra Small Devices, Phones */
   @media only screen and (min-width : 480px) {

     .site-title,
     .site-subtitle{
       text-align: left;
     }
   }

   /* Small Devices, Tablets */
   @media only screen and (min-width : 768px) {

   }

   /* Medium Devices, Desktops */
   @media only screen and (min-width : 992px) {


   }

   /* Large Devices, Wide Screens */
   @media only screen and (min-width : 1200px) {

      #mobile-menu-toggle{
        display:none;
      }
      .main-navigation{
        display:block;
      }
   }



  /* Print */
  @media print{

    .no-print{
      display:none;
    }

  }
