* {
	box-sizing: border-box;
	/* font-family: Georgia, 'Times New Roman', Times, serif; */
	font-family: 'Rubik Iso', serif;
	/* font-family: 'Cinzel', serif; */
}

a {
    color:#000;
    text-decoration:none;
}

a:link {
    text-decoration: none;
}
    
a:visited {
    color:#000;
    text-decoration: none;
}
    
a:hover {
    text-decoration: underline;
}
    
a:active {
    text-decoration: underline;
}

body {
	align-items: center;
	display: flex;
	flex-direction: column;
}

h1 {
	margin-bottom: 4vmin;
}

h2 {
	margin-top: 2vmin;
}

html,
body {
	background-color: #fff;
	height: 100%;
	height: 100vh;
	height: -webkit-fill-available;
	margin: 0;
	padding: 0;
	min-height: 100vh;
} 

main {
	display: flex;
	flex: 1 0 auto;
	flex-grow: 1;
	grid-area: main;
	height: 100%;
	width: 100%;
}

main::-webkit-scrollbar {  display: none;}

nav {
    width: 100%;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* class */

.dog {
	border-bottom: 1px solid black;
	border-right: 1px solid black;
	border-top: 1px solid black;
	max-height: 50%;
	max-width: 100%;
}

.frame {
	align-items: center;
	border-left: 1px solid black;
	display: flex;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	width: 100%;
}

.left {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	max-height: 100%;
	max-width: 100%;
	padding-right: 4vmin;
	text-align: right;
	width: 100%;
}

.menu {
	margin-bottom: 4vmin;
}

.right {
	display: flex;
	height: 100%;
	justify-content: left;
	max-height: 100%;
	max-width: 100%;
	padding-left: 4vmin;
	width: 100%;
}

.spacer {
    margin-bottom: 2vmin;
}

.wrapper {
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
	grid-template-areas:
		'header'
		'main'
		'footer'; 
	min-height: 100vh;
	height: -moz-available;          /* WebKit-based browsers will ignore this. */
    height: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    height: fill-available;
	width: 100%;
}

.wrapper>* {
	padding: 0;
}