
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
html,body{
	height: 100%;
	width: 100%;
}
.wrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	height: 100%;
	
	background: rgb(60,60,60);
	background: -moz-radial-gradient(circle, rgba(60,60,60,1) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-radial-gradient(circle, rgba(60,60,60,1) 0%, rgba(0,0,0,1) 100%);
	background: radial-gradient(circle, rgba(60,60,60,1) 0%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3c3c3c",endColorstr="#000000",GradientType=1);
}

img{
	width: 90%;
	display: block;
	position: relative;
}
a{
	font-family: 'Montserrat', sans-serif;
	font-size:1em;
	font-weight: 600;
	letter-spacing: 2px;
	color: #FFFFFF;
	text-decoration: none;
	padding: 10px 20px;
	display: block;
	position: relative;
}
a::after{
	content:'';
	position: relative;
	margin-top: 2px;
	width: 0px;
	height: 2px;
	display: block;
	background:#FFFFFF;
	margin-left:50%;
	transition: width ease-in-out .2s , margin-left ease-in-out .2s;
}
a:hover::after{
	margin-left:0;
	width: 100%;
	transition: width ease-in-out .1s , margin-left ease-in-out .1s;
}

@media (min-width: 576px){
	img{
		width: 80%;
	}
}
@media (min-width: 768px){
	img{
		width: 50%;
	}
}
@media (min-width: 992px){
	img{
		width: 40%;
	}
}
@media (min-width: 1200px){
	img{
		width: 30%;
		max-width: 500px;
	}
}