<html lang="en">
<head>
<title>Page Title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@media(max-width: 600px) {
/* Style the body */
body {
font-family: Arial;
margin: 0;
}
/* Header/Logo Title */
.header {
padding: 20px;
text-align: center;
background: #1abc9c;
color: white;
font-size: 30px;
}
/* Page Content */
.content {padding:20px;}
}
</style>
</head>
<body>
<div class="header">
<h1>Header</h1>
<p>My supercool header</p>
</div>
<div class="content">
<h1>Content</h1>
<p>Some content blablabla, some content blablabla.</p>
<p>Some content blablabla, some content blablabla.</p>
<p>Some content blablabla, some content blablabla.</p>
</div>
</body>
</html>