@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:400,600,800');

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Nunito Sans', sans-serif;
}
.page {
  height: 100%;
  width: 100%;
  display: block;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #e73c7e, #f87d43, #a87fdd, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  background-position: 50% 50%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bkg-logo {
	position: absolute;
	display: block;
	height: 300px;
	bottom: 7%;
  left: 23%;	
  opacity: 0.25;
}

.card {
  width: 480px;
  height: 500px;
  top: 10%;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0px 50px 100px rgba(0, 0, 0, .4);
  display: block;
  position: relative;
  align-items: center;
  justify-content: center;
}

.container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.menu {
  width: 100%;
  padding: 25px;
}

.menu img {
	height: 22px;
}

.menu h3 {
  font-size: 1em;
  margin-left: 25px;
  font-weight: 800;
  float: left;
}

.content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .text {
  margin-bottom: 50px;
  margin-left: 50px;
  margin: 0 30px 50px 50px;
}

.content .qrcode {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.text h1 {
  font-size: 2.5em;
  line-height: 1;
  color: rgb(59, 59, 59);
  text-align: center;
}
.text h2 {
  font-size: 1.3em;
  color: rgb(59,59,59);
  margin-bottom: 20px;
  margin-top: 35px;
  text-align: center;
}

.text p {
  color: rgb(0,0,0,0.5);
  margin-bottom: 40px;
  margin-top: -5px;
}