@charset "utf-8";
/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 5
   Review Assignment
   
   Author:   Cassandra Rutter
   Date:     10/31/2025
      
   Filename: tf_styles4.css

   This file contains the screen styles used with the Trusted
   Friends blog tips

*/


/* Import Basic Design Styles Used on All Screens */

@import url("tf_designs.css");



/* General Flex Styles */
body {
    display: flex;
    flex-flow: row wrap;   
}
#left {
    flex: 1 8 130px;
}
#right {
    flex: 8 1 351px;
}
#tips {
    display: flex;
    flex-flow: row wrap;
}
article {
    flex: 2 1 351px;
}
aside {
    flex: 1 2 250px;
}
nav.horizontal ul {
    display: flex;
    flex-flow: column wrap;
}






/* ===============================
	Mobile Devices: 0 to 480px 
   ===============================
*/
	@media screen and (max-width: 480px) {

}




/* ============================================
	Tablet and Desktop Devices: 481px or more 
   ============================================
*/



