

/* Big tablet to 1200px (widths smaller that the 1140px row) */
@media only screen and (max-width: 1200px){
	
}


/* Small tablate to big tablet: from 768px to 1023px */
@media only screen and (max-width: 1023px){
	

}



/* small phones to small tablets: from 481px to 767px */
@media only screen and (max-width: 767px){

	.centered {
    font-size: 200%;    
	}

	.better-centered{
    font-size: 200%;    
    }

	.strong-centered {
    font-size: 200%;    
	}

	.shadows-centered {
    font-size: 200%;    
	}

	.boredom-centered {
    font-size: 200%;    
	}

	.captain-centered {
    font-size: 200%;
	}


	
}


/* small phones: from 0 to 480px */
@media only screen and (max-width: 480px){

	.centered {
    font-size: 100%;    
	}

	.better-centered{
    font-size: 100%;    
    }

	.strong-centered {
    font-size: 100%;    
	}

	.shadows-centered {
    font-size: 100%;    
	}

	.boredom-centered {
    font-size: 100%;    
	}

	.captain-centered {
    font-size: 100%;
	}

	
}