
/* CSS Document */

span.comment1{
    background-color: #ff6666;
}

span.comment2{
    background-color: #00ccff;
}

span.comment3{
    background-color: #ffa366;
}

span.comment4{
    background-color: #33cc33;
}

span.comment5{
    background-color: #ff4dff;
}

.text-container {
    position: relative;
    padding: 20px;
    background-color: #ddd;
    margin-top: 1em;
    cursor: pointer;
}
#activityDescription{
	margin-bottom:1em
}

#activityControls {
    text-align: center;
}

.passage{
    display:none; /* Hide initially*/
}

/* media queries */

/* ----------- Large Display ----------- */

@media screen and (max-width: 1920px) and (max-height: 1080px){
    /* Styles */
 .text-content p{
    font-size:1.3em;
 }


    

/* ----------- Laptop HiDPI screen ----------- */

@media screen and (max-width: 1440px) and (max-height: 900px){
    /* Styles */
     .text-content p{
    font-size:1.4em;
 }

   

}


/* ----------- Laptop ----------- */

@media screen and (max-width: 1366px) and (max-height: 768px){
    /* Styles */
      

}


/* ----------- Laptop MDPI screen ----------- */

@media screen and (max-width: 1280px) and (max-height: 800px){
    /* Styles */
   
       

}


/* ----------- iPad Landscape----------- */

@media only screen and (max-device-width: 1024px) and (max-device-height: 768px){
    /* Styles */
    .text-content p{
    font-size:1.3em;
 }


}




