/*
Theme Name: Six Child
Version: 1.0
Description: A child theme of Twenty Sixteen
Author: AadminPlaza
Template: twentysixteen
*/

@import url("../twentysixteen/style.css");

 
  .mobileShow {display: none;} 

  /* Smartphone Portrait and Landscape */ 
  @media only screen 
    and (min-device-width : 320px) 
    and (max-device-width : 480px){ 
      .mobileShow {display: inline;}
  }



/* Style the container with a rounded border, grey background and some padding and margin */
.containerRE {
  border: 2px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
}

/* Clear floats after containers */
.containerRE::after {
  content: "";
  clear: both;
  display: table;
}

/* Float images inside the container to the left. Add a right margin, and style the image as a circle */
.containerRE img {
  margin-right: 10px;
 
}

/* Increase the font-size of a span element */
.containerRE span {
  font-size: 20px;
  margin-right: 15px;
}

/* Add media queries for responsiveness. This will center both the text and the image inside the container */
@media (max-width: 500px) {
  .containerRE {
    text-align: center;
  }

  .containerRE img {
     margin-right: 10px;
  }
}