*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  border: 0;
}

html {
    color: #fff;
    font-family: 'Open Sans';
    -webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
    line-height: 1.75;
}

body {
	background-color: #333;
	background-image: url("../img/bg-main.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;	
}

.content {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
}

.set-content {
	max-width: 1040px;
	margin: 10px 15%;
}

.set-content p {
    margin-top: 25px;
    font-size: 21px;
    text-align: left;
}


h1 {
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.25;
	margin-bottom: 20px;
}

h1 span {
	font-weight: 600;
}

p {
	color: #fff;
	font-size: 1.15rem;
	max-width: 630px;
	margin: 0;
}

a {
	color: #E70C52;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	border-bottom: 1px solid #E70C52;
	padding-bottom: 1px;
}

a:hover {
	color: #fff;
	border-color: #fff
}

#wife {
	font-size:0.7rem;
}

#wife a {
	color: #fff;
	border: none;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* MEDIA QUERIES */
@media screen and (max-width: 540px) {
	.container {
		margin: 0;
		padding: 24px;
	}

	.content {
		align-items: flex-start;
	}

	h1 {
		font-size: 1.7rem;
	}

	p {
		font-size: 1rem!important;
	}
}

::-moz-selection { 
	color: white;
	background: #E70C52;
}

::selection {
	color: white;
	background: #E70C52;
} 