@import url('https://fonts.googleapis.com/css?family=Cinzel&display=swap');

body {
	background: black;
	color: white;
	overflow-x: hidden;
}

main {
	text-align: center;
	width: 80vw;
	margin-left: auto;
	margin-right: auto;
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	place-items: center;
	grid-auto-flow: dense;
	grid-gap: 35px;
	font-family: 'Cinzel', serif;
}

img {
	width: 90%;	
	clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
	filter: grayscale(50%) saturate(0.25) hue-rotate(320deg) invert(100%);
}

#three {
	position: relative;
	top: -35px;
	left: 45px;
}

#five {
	position: relative;
	top: -35px;
	right: 45px;
}

p {
	line-height: 2em;
	font-size: 32px;
}

span {
	animation-name: appearance;
	animation-direction: reverse;
	animation-duration: 40s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes appearance {
	0% {
		opacity: 0;
	}
	80% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#switchbutton {
	position: relative;
	animation-name: movement;
	animation-duration: 12s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	z-index: 2;
	background: rgba(0,0,0,0.1);
	color: white;
	border: none;
	height: 1.5em;
	width: auto;
	font-family: 'Cinzel', serif;
	font-size: 32px;
}

@keyframes movement {
	0% {right: 0;}
	5% {right: 0;}
	100% {right: -80vw;}
}

#switchbutton:hover {
	opacity: 0.1;
	cursor: grab;
}

#switchbutton:active {
	cursor: grabbing;
}

#switchbutton:focus {
	outline: none;
}

aside {
	position: absolute;
	top: 310px;
	left: 0;
	right: 0;
	margin: auto;
	animation-name: appearance;
	animation-duration: 12s;
	animation-fill-mode: forwards;
}

a:link {
	color: white;
}

a:visited {
	color: white;
}

a:focus {
}

a:hover {
}

a:active {
}