html, body {
  	height: 100%;
	width: 100%;		
	margin: 0px;
}

body {
	background-image: url("../img/background.jpg"), linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
	background-blend-mode: overlay;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.container {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card {
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
	overflow: auto !important;
}
.card-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: none;
	word-break: break-word;
	max-width: 800px;
}	

.card-image {
	height: auto; 
    max-width: 100%; 
}

#questionTitle {
	font-weight: bold;
	font-size: 40px;
}

#questionText {
	text-align: center;
}

#Q1, #Q2, #Q9 {
	display: none;
}

#responseText {
	color: red;
	font-weight: bold;
}

#answerText::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(158,158,158, 0.95);
}
#answerText::-moz-placeholder { /* Firefox 19+ */
  color: rgba(158,158,158, 0.95);
}
#answerText:-ms-input-placeholder { /* IE 10+ */
  color: rgba(158,158,158, 0.95);
}
#answerText:-moz-placeholder { /* Firefox 18- */
  color: rgba(158,158,158, 0.95);
}

#buttonRow {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

#buttonRow .btn {
	margin: 5px;
}

#webLink {
	position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    height: 70px;
    width: 70px;
    background-color: #F44336;
    color: white !important;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#webLink a {
	height: 60px;
    width: 60px;
	color: white;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

#webLink a .material-icons {
	font-size: 40px;
}