/*
	v1.0 - 20220521 - based on http://bettermotherfuckingwebsite.com
	v1.1 - 20230222 - added media screen for mobile
*/
body {
    margin: 30px auto;
    max-width: 650px;
    line-height: 1.4;
    font-size: 18px;
    color: #555;
    background-color: #EEE;
    padding: 0 10px
}

h1, h2, h3 {
    line-height: 1.2
}
    
p {
    text-align: justify
}

img {
  max-width: 100%;
  height: auto
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9
}


/* mobile devices and other small screens */
@media screen and (max-width: 640px) {
	body {
    	background-color: #fff;
		font-family: sans-serif
		}
}
