/* Smartphones (portrait) */
@media only screen and (max-width: 320px) {
/* Styles */
}
/* iPads (portrait and landscape) */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
/* Styles */
}
/* Desktops and laptops */
@media only screen and (min-width: 1224px) {
/* Styles */
}
/* Instead of using px measurements, use % when setting width or height.*/
/* The % is calculted from the width of the parent element.*/
#NonResponsiveWidth {
width: 1080px;
height: auto;
}
#responsiveWidth {
width: 85%;
height: auto;
}
/*For text, use vw (viewport-width) instead of px when setting font-width*/
#NonResponsiveText { font-size: 20px; }
#responsiveWidth { font-size: 10vw; }
div {
font-size: min(3vw, 36px);
}
<section class="main">
<h2>Santa Ana</h2>
<p>Un campo situado en General Villegas, provincia de Buenos Aires en el corazón de la llanura pampeana. Lo esperamos para descansar y disfrutar de la tranquilidad con su familia, pareja o realice el evento de su empresa. Contamos con la mejor infraestructura de la zona para que sus necesidades esten satisfechas.</p>
<a href="Nosotros.html">Conocé mucho más acerca de Nosotros</a>
</section>