/* styles.css 
   Project: 
   Author: 
   Date: 
*/

/*google font*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Montserrat:wght@300;400&display=swap');

/*main css*/


* {
   box-sizing: border-box;
}

img {
   /*width: 100%;*/
   display: block;
}

body {
   background-color: mintcream;
   font-family: 'Lato', sans-serif;
   /*font-family: 'Montserrat', sans-serif;*/
}

.text {
   width: 40%;
   text-align: center;
   margin: auto;
}

.selected {
   border: 5px solid yellow;
}

.grandmother {
   border: 2px solid cornflowerblue;
   background-color: lemonchiffon;
   width: 80%;
   margin: auto;
   padding: 2%;
   display: grid;
   grid-template-columns: 3fr 1fr;
   grid-gap: 2%;
}

.crayon {
   border: 2px dotted hotpink;
   background-color: powderblue;
}

.crayonbox {
   background-color: powderblue;
   border: 2px dotted hotpink;
   padding: 3%;
   font-size: 1.4em;
   min-height: 30px;
}

.mother {
   border: 2px dotted hotpink;   
   background-color: powderblue;
   padding: 2%;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   grid-gap: 1%;

}

.child {
   border: 3px solid white;   
   background-color: oldlace;
}

.child img {
   width: 100%;
}

.tia {
   border: 2px dotted hotpink;
   background-color: powderblue;
   padding: 4%;
   text-align: center;
}

.reporter {
   border: 2px solid white;
   margin: auto;
}

.reporter img {
   width: 100%;
}

.tia h1 {
   margin-top: 20px;
   font-size: 1.5em;
}

.tia h2 {
   margin-top: 10px;
   font-size: 4em;
}

.diaper {
   border: 2px solid white;
   font-size: 1.2em;
   margin-top: 10px;
}

/*media query for responsive design */

@media only screen and (max-width: 640px) {


}











