* {
	box-sizing: border-box;
}
    
body {
	align-items: center;
	display: flex;
	flex-direction: column;
}

html,
body {
	background-color: #fff;
	height: 100%;
	height: 100vh;
	height: -webkit-fill-available;
	margin: 0;
	padding: 0;
	min-height: 100vh;
} 

figure {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

main {
	align-items: center;
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	flex-grow: 1;
	grid-area: main;
	height: 100%;
	justify-content: center;
	width: 100%;
}

main::-webkit-scrollbar {  display: none;}

/* || Classes || */

.img__index {
    width: 30%;
}

.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;
}

/* || @media || */

@media only screen and (max-width: 576px) {
      .img__index {
        width: 100%;
      }
    }