﻿/* henrykvak.com */

html, body {
	height: 100%;
	padding: 0;
	margin: 0;
	}

body {
	min-height: 100%;
	background-color: white; /* Paper color for light mode*/
    color: #000000; /* Text color for light mode */
	}

/* Samsung A40 is 360 x 780 CSS pixels */
/* Default:  Mobile portrait */
.papercolumn
	{
	width: 100%;
	min-height: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: 0 15px;
	color: black;
	background-color: white;
	padding-top: 1px; /* Prevents margin collapse, i.e. image margin becoming div margin */
	}

/* Bigger:  Mobile landscape, tablet, desktop */
@media screen and (min-width: 681px) /* 640 */
	{
	.papercolumn
		{
		max-width: 550px;
		}
	}

body
	{
	font-family:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
	/* font-family: helvetica,sans-serif; */
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	}

p
	{
	font-size:18px;
	margin-top: 0;
	margin-bottom: 0;
	text-align: justify;
	text-indent: 0em;
	line-height: 1.4;
	letter-spacing: 0px;
	}

@media screen and (min-width: 681px) /* 640 */
	{
	p
		{
			font-size: 17px;
		}
	}


.content-image {
    border: none; /* Replaces BORDER="0" */
    height: auto; /* Maintains aspect ratio if CSS overrides HTML width */
    max-width: 100%; /* Prevents images from overflowing containers on small screens */
    display: block; /* Removes extra space under image */
}

