
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: local('Montserrat Thin'), local('Montserrat-Thin'), url(/fonts/montserrat/Montserrat-Thin.woff2) format('woff2'), url(/fonts/montserrat/Montserrat-Thin.woff) format('woff');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url(/fonts/montserrat/Montserrat-Regular.woff2) format('woff2'), url(/fonts/montserrat/Montserrat-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url(/fonts/montserrat/Montserrat-Bold.woff2) format('woff2'), url(/fonts/montserrat/Montserrat-Bold.woff) format('woff');
}

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	height: 100vh;
}

.container {
	/*
	display: table;
	vertical-align: middle;
	*/
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	width: 100%;
	height: 100%;
	text-align: center;
	margin: 0 auto;
	border: none;
}
.row {
	display: block;
	margin: auto;
}
.cell {
	/*
	display: table-cell;
	vertical-align: middle;
	*/
	margin: auto;
}
h1 {
	font-family: 'Montserrat', sans-serif;
	white-space: nowrap;
	font-weight: normal;
}
div.logo > h1, span.slogan {
	z-index: 1;
	position: relative;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.logo h1 {
    color: #000;
    font-size: 5vw;
}
.logo span {
	padding: 0 0 0 3px;
}
.highlight {
	color: #11ed6b;
	font-weight: 700;
}
.slogan {
	font-family: 'Montserrat', sans-serif;
	white-space: nowrap;
	font-weight: 100;
	color: #1b1c1c;
	font-size: 4vw;
}

@media only screen and (max-width: 600px) {
  .logo h1 {
      font-size: 9vw;
  }
  .slogan {
      font-size: 8vw;
  }
}

div.beepx {
	min-width: 30vw;
}

.beepx  {
	width: 10vw;
	min-width: 30vw;
	max-width: 25vw;
	z-index: 1;
	position: relative;
	transform:
		perspective(800px)
		rotateY(25deg) scale(0.9)
		rotateX(10deg);
	filter: blur(15px);
	opacity: 0.01;
	transition: 0.5s ease all;
  }

.beepx:hover  {
	width: 50vw;
	transform:
		perspective(800px)
		rotateY(-15deg)
		translateY(-50px)
		rotateX(10deg)
		scale(1);
	filter: blur(0);
	opacity: 1;
}

.beepx img {
	max-height: 33vh;
}