html,body{
	outline: 0;
	margin: 0;
	padding: 0;
	font-family: 'Bubbler One', sans-serif;
	background-color: #fff
	color: #000;
	-webkit-font-smoothing: antialiased;
	height: 100%;
}
body{
	//background-image: url("img/pattern.png");
    //background-repeat: repeat;
}
a{
	text-decoration: none;
	color: #fff;
}
a:hover{
	text-decoration: underline;
}
.header{
	width: 100%; 
	//height: 200px;
	margin: auto;
	text-align: center;
	background-color: #742f37;
	color: #fff;
	position: relative;
	z-index: 50;
}
.header .title{
	display: block;
	font-size: 3em;
	padding-top: 15px;
	text-transform: capitalize;
    font-weight: bold;
}
.header .title-text{
	display: block;
	padding-bottom: 15px;
	font-weight: bold;
	font-size: 18px;
}
.body{
	width: 1000px;
    height: 100%;
    position: absolute;
    left: 50%;
    margin-left: -500px;
    font-size: 18px;
    background-color: #fff;
    top: 0;
    z-index: 10;
}
.body .logo-container{
	margin-top: 143px;
}
.body .logo{
	padding-top: 25px;
	width: 250px;
	display: block;
	margin: auto;
}
.body .content{
	padding: 25px;
	padding-top: 50px;
	padding-bottom: 50px;
    display: block;
    font-weight: bold;
    color: #37474F;
}
.wine{
	color: #81434b;
}
.footer{
	position: fixed;
    bottom: 0;
    text-align: center;
    width: 100%;
    background-color: #742f37;
    padding-top: 7px;
    padding-bottom: 7px;
    color: #fff;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    z-index: 50;
}

@media only screen and (max-width: 1100px) 
{
	body{
		background-image: none;
	}
	.body{
		width: 100%;
		height: auto;
		display: block;
		position: relative;
		margin: auto;
		top: auto;
		bottom: auto;
		left: auto;
	}
	.body .logo-container{
		margin-top: 0px;
	}
}


@media only screen and (max-width: 800px) 
{	
	.body{
		position: relative;
	}
	.footer{
		flex-direction: column;
		position: relative;
	}
}