body{
	background: url(".../img/tic-tac-toe.png");
}

.margin{
	margin-top: 9.5px;
}

.content{
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	background: url("../img/fondo3.jpg");
	background-size: 100vw 100vh;
	margin: 0px;
}

form{
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	width: 500px;
	margin: auto;
	background: rgba(0,0,0,0.5);
	margin-top: 20px;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 20px;
}

h2{
	color: #ffffff;
	text-align: center;
	margin: 0;
	font-size: 30px;
	margin-bottom: 20px;
}

p{
	font-size: 17px;
	text-align: center;
	color: #ffffff;
}

input, select, textarea{
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	width: 100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 18px;
	overflow: hidden;
	border-radius: 10px 10px 10px 10px; 
	-moz-border-radius: 10px 10px 10px 10px; 
	-webkit-border-radius: 10px 10px 10px 10px; 
}

textarea{
	min-height: 100px;
	max-height: 200px;
	max-width: 100%;
}

#boton{
	color: #ffffff;
	background: #088A68;
	font-weight:bold;
	padding: 20px;
	border-radius: 10px 10px 10px 10px; 
	-moz-border-radius: 10px 10px 10px 10px; 
	-webkit-border-radius: 10px 10px 10px 10px; 
	border: 1px;
}

#boton:hover{
	cursor: pointer;
}



.campo{
	font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif; 
	color: #088A68; 
	font-size: 18px; 
	font-weight: 400; 
	text-align: center; 
	background: rgba(0,0,0,0.1); 
	margin: 0 0 5px; 
	overflow: hidden; 
	padding: 10px; 
	border-radius: 20px 20px 20px 20px; 
	-moz-border-radius: 20px 20px 20px 20px; 
	-webkit-border-radius: 20px 20px 20px 20px; 
	border: 2px solid #088A68;
}

@media (max-width: 500px){
	form{
		width: 100%;
	}
}