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;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul {
    margin: 0 0 1.3em;
}
li {
    margin: 0 0 5px 30px;
    font-size: 16px;
    line-height: 1.3em;
    list-style-type: disc; 
}
li:last-child {
    margin: 0 0 0 30px;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	width: 100%;
	height: 100%;
	color: #402121;
	font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	background: #E9DFC6;
}
h1 {
	margin-bottom: 1em;
	font-size: 22px;
	line-height: 1em;
	font-weight: 800;
}
p {
	margin-bottom: 1em;
	font-size: 18px;
	line-height: 1.3em;
	font-weight: 400;
}
a {
	position: relative;
	color: #91805E;
	text-decoration: none;
	transition: color 300ms ease-in-out;
}
a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #91805E;
	opacity: 1;
	transition: 300ms opacity ease-in-out;
}
a:hover {
	color: #402121;
}
a:hover:after {
	opacity: 1;
}
main {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
}
.wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1080px;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;
}
.half-col {
	display: flex;
	flex-direction: column;
	width: 50%;
	padding: 0 30px;
}
.logo {
	width: 400px;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	margin: 0 auto 40px;
}
.main-text {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}
.info {
	margin: 0 auto 1em;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3em;
}
.social {
	font-size: 24px;
}
.social a:after {
	display: none;
}
.icon {
	margin: 0 10px;
}
i {
	transition: transform 300ms ease-in-out
}
.icon:hover i {
	transform: scale(1.1);
}
.anim {
	opacity: 0;
	transform: translateY(60px);
}

@media screen and (max-width: 800px) {
	main { 
		height: 100%;
		padding: 60px 0;
	}
	.wrapper {
		flex-direction: column;
	}
	.half-col {
		width: 100%;
		padding: 0 15px;
	}
	.logo {
		width: 250px;
	}
	
	
}
@media screen and (max-height: 600px) {
	main {
		height: 100%;
		padding: 60px 0;
	}
	.wrapper {
		align-items: flex-start;
	}
}
