@charset "UTF-8";
/* CSS Document */

body{
	float: center;
	font-family: 'Akaya Telivigala', cursive;
	background-image:linear-gradient(white, bisque)
}

a{
	color:black
}

div{
	text-align:center;
	margin:auto
}

.interface{
	background-image: url("../../Project_2_Final/images/background.png");
	background-repeat:no-repeat;
	width:70%;
	height:600px;
	padding-top:200px;
	text-align:center;
}

.textBox{
	background-color: rgba(255,255,255,0.45);
	width: 80%;
	margin-top:10px;
	margin-bottom: 10px;
	text-align:center;
	display: inline-block
}

.choice{
	background-color:rgba(255,255,255,0.45);
	width:23%;
	display:inline-block;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	cursor:pointer;
	text-decoration:underline;

}
.choice:hover {
	color:saddlebrown;
	background-color:white;
	transition: background-color 1s;
}

.choice a:hover {
	color:saddlebrown;
}