body{
	font-family:golden;
	background-color:#dda35d;
	margin-left:8%;
	margin-right:8%;
}
@font-face{
	font-family:golden;
	src: url("../font/GoldenSun.ttf") format("truetype");
}
h2{
	text-align:center;
	border-top:3px dashed black;
	padding:10px;
}
table{
	max-width:100%;
	margin:auto;
}
.izquierda{
	border-right:3px solid;
	margin-right:10px;
}
.derecha{
	border-right:3px solid;
	padding-right:10px;
}
img{
	margin-top:10px;
	max-width:30vw;
	max-height:200px;
	filter:grayscale(100%);
	transition:0.7s;
	transition-delay:0.5s;
}
img:hover{
	filter:grayscale(0%);
	transition:0.7s;
}
.bote{
	animation: bounce 0.7s linear;
}
input{
	border:3px solid;
	font-weight:bold;
	background-color:white;
	padding: 10px 35px;
	transition:0.2s linear;
}
input:hover{
	border-radius:20px;
}
#enviar{
	padding-bottom:20px;
	padding-top:20px;
	text-align:center;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(5px);}
    60% {transform: translateY(-3px);}
}