* {
	box-sizing: border-box;
}

.announcement {
	display: inline-block;
	height: 100%;
	text-align: center;
	width: 100%;
	background: #EF669A;
	color: white;
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
	font-weight: bold;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	font-size: 1.5em;
	
	/* Prevents selecting text */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.announcement a { 
	color: #ccc; 
}

body {
	margin: 0;
	
	/* Background */
	background-image: url("/Resources/images/bg_home.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.logo {
	user-drag: none; 
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}

/* Button */
.btn {
	background-color: #EF669A;
	border: none;
	color: white;
	padding: 15px 32px;
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	cursor: pointer;
}

/* Button Hover Properties */
.btn1 {
	background-color: #EF669A; 
	color: white; /* Text Color */
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.btn1:hover {
	background-color: #800080;
	color: white; /* Text Color */
}

/* Disabled Button */
.disabled {
	background-color: gray;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	opacity: 0.6;
	cursor: not-allowed;
}

/* Page content */
.content @media screen and (min-height:1080px){  
	display: flex;
	flex-wrap: wrap;
	position: fixed;
    top: 50%;
    left: 50%;
	margin-top: -350px;
    margin-left: -250px;
}

/* Main column */
.main {   
	flex: 100%;
	padding: 20px;
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
	text-align: center;
}

.footer {
	background-color: #800080;
	padding: 10px;
	margin-bottom: 0;
	color: white;
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
	font-weight: bold;
	position: static; 
}