* {
    box-sizing: border-box;
}

html {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    font-size: 16px;
    scroll-behavior: smooth;
    /*scrollbar-width: thin; */
}

header {
	height: 30vh;
	background-color: #424242;
	display: flex;
	justify-content: center;
	align-items: center;
}

body {
	margin: 0;
	width: 100%;
}

main {
	height: 70vh;
	max-width: 100%;
    margin: 0;
    display: flex;
padding: 0 1em;
    flex-direction: column;
text-align: center;
    background-color: #EEE;
	font-family: "Times New Roman", serif;
}

img {
	max-width: 100%;
	padding: 1em;
}

h1, h2 {
    font-weight: normal;
    color: #888888;
    letter-spacing: 0.1em;
}

h1 {
	font-size: 1.5em;
}

h2 {
	font-size: 1em;
}

    h1::first-letter {
        font-size: 1.5em;
    }
