*{
	margin: 0;
	padding: 0;
}
body {
	font-family: 'PT Serif', serif;
	color: #4b0f31;
	background: #f1e5e6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a{color: #4b0f31;}
.center{
	visibility: visible;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	text-align: center;	
}
.image{
	width: 100%;
	height: 380px;
	background: url("art-logo-simple.png") center no-repeat;
	background-size: contain;
}
.center img{
	width: 70%;
}
.center h1{
	margin: 20px 0 0 0;
}
.social{
	margin-top: 25px;
}
.social ul{
	display: inline-block;
	padding-inline-start: 0 !important;
}
.social ul li{
	display: inline-block;
}
.icon{
	cursor: pointer;
	font-size: 30px;
	margin: 0 10px;
	transition: 0.4s;
	transform: scale(1.0);
}
.icon:hover{
	transform: scale(1.2);
}

@media screen and (max-width: 600px){
	.icon{
		font-size: 20px;
	}
	.center{
		width: 80%;
	}
	.image{
		height: 150px;
		background-size: contain;
	}
	.center h1{
		font-size: 24px;
	}
}

