@charset "utf-8";

/* mq.css */
/* CSS Document for the CSS Media Queries Web page */
/*  Class: WEBSITE DESIGN - 420-WB4-AB
    Assignment: Final Project
    Team 4
      Craig Collins (1038789)
      James Fallouh (6171620)
      SeyedehFatemeh Fekribaygi (6284424)

    Current Date: 2024-02-20
     */



/* default (base) style */
@import url("custom-default.css");

/* phone style */
@import url("phone.css") only screen and (max-width:400px);

/* tablet style */
@import url("tablet.css") only screen and (min-width:401px) and (max-width:768px); 
/* desktop style */
@import url("desktop.css") only screen and (min-width:769px);