body {
    margin: 0;
    padding: 0;
	background-image: url(fon.png);
	-webkit-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	font-family: sans-serif;
}

table {
	margin: auto;
	font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 14px;
	border-collapse: collapse;
	background: #252F48;
}

table td {
	color: #CAD4D6;
	padding: 7px 17px;
}


.pressed-button {
	text-decoration: none;
	display: inline-block;
	padding: 12px 40px;
	margin: 10px 20px;
	border-radius: 30px;
	background-image: linear-gradient(45deg, #6ab1d7 0%, #33d9de 50%, #002878 100%);
	background-position: 100% 0;
	background-size: 200% 200%;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 300;
	color: white;
	box-shadow: 0 16px 32px 0 rgba(0, 40, 120, .35);
	transition: .5s;
}
.pressed-button:hover {
	box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
	background-position: 0 0;
}