/* global */
*, *:before, *:after {
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 95vh;
	background-color: #000000;
	justify-content: center;
	margin: 0;
	padding: 0;
	transition: background-color 2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Title */
.title-container {
	display: block;
	text-align: center;
}

.title-text {
	color: #eee;
	font-family: sans-serif;
	font-size: 20px;
}

.title-main {
	font-family: monospace;
	font-size: 35px;
}

/* Tooltip */
.tooltip {
	display: inline-block;
	border-bottom: 1px dashed;
}

.tooltip:hover {
	position: relative;
}

.tooltip .tooltip-content {
	display: none;
}

.tooltip:hover .tooltip-content {
	text-align: left;
	border: #c0c0c0 1px solid;
	background-color: #0a0a0a;
	font-size: 15px;
	padding: 10px;
	font-weight: normal;

	display: block;
	z-index: 100;
	left: -5px;
	margin: 10px;
	width: 350px;
	position: absolute;
	top: 10px;
	text-decoration: none;
}

.tooltip-header {
	font-size: 17px;
	font-weight: bold;
}

/* Layout helpers */
.row {
	display: block;
	position: relative;
	top: 20%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.column {
	display: flex;
	padding: 20px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

/* Buttons */
.button {
	border: 2px solid #2e2e2e;
	cursor: pointer;
	letter-spacing: 0.2125rem;
	overflow: hidden;
	padding: 20px 30px;
	position: relative;
	text-align: center;
	/*text-transform: uppercase;*/
	transition: background 5s cubic-bezier(0.19, 1, 0.22, 1), border 1s cubic-bezier(0.19, 1, 0.22, 1), color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	user-select: none;
	height: 65px;
	width: 320px;
	text-decoration: none;
}

.button .btnContent {
	color: #969696;
	font-family: sans-serif;
	font-size: 18px;
	text-decoration: none;
	min-width: 100%;
	min-height: 100%;
}

.button .mask {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.5);
	height: 100px;
	position: absolute;
	transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
	transition: all 1.3s cubic-bezier(0.19, 1, 0.22, 1);
	width: 200px;
}

.button .shift {
	display: inline-block;
	transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.button:hover {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: #fff;
	box-shadow: 0 0 5px rgba(255, 245, 245, 0.8);
	transition: background 0s;
}

.button:hover .btnContent {
	color: #fff;
}

.button:hover .mask {
	background-color: #fff;
	transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

.button:hover .shift {
	transform: translateX(5px);
}

.shift {
	position: relative;
	/*top: 2px;*/
	float: right;
	right: -20px;
	overflow: visible;
}

.button:active {
	background-color: #fff;
}

.button:active a {
	color: #202020;
}

.btnImage {
	vertical-align: middle;
	position: relative;
	float: left;
	left: -20px;
	top: -15px;
}

.btnContent {
	overflow: visible;
	position: relative;
	margin-top: -15px;
}

/* Key icon */
.pgp-icon {
	display: inline-block;
	position: absolute;
	z-index: 999;
}

.pgp-icon a {
	position: relative;
	left: -134px;
	top: 2px;
}
