@charset "utf-8";
/* CSS Document */


#leftside_screen
{
  background:url('../images/gallo.png');
  background-repeat: no-repeat;
  background-size: 30% 70%;
  background-position: center;   
  background-color: #FEC4C4
}

/* Settings for screens with a min width of 1600px. */
@media (min-width: 1601px)
{
     /* default values for all objects on 1600px or less screens */ 
    :root 
    {
      font-size: 14px;    
    }
}
    

/* Settings for screens with a max width of 1300px. */
@media (max-width: 1600px)
{
    /* default values for all objects on 1300px or less screens */ 
    :root 
    {
      font-size: 12px;    
    }
    
  
    /* UPRRP image width and size on 1300px or less screens */
    .uprrp_img
    {
      width: 190px;
      height: 53px;
    }
    
}

@media (max-width: 600px)
{
   /* default values for all objects on 1300px or less screens */ 
    :root 
    {
      font-size: 10px;    
    }
}




