:root {
  --color1: #4F6F52; /* Dark */
  --color2: #86A789; /* Medium */
  --color3: #D2E3C8; /* Light */
}
html {
	margin: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: visible;
}
body {
	margin: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
}
* {
	box-sizing: border-box;
}

#app {
  overflow: hidden;
  display: block;
  justify-content: center;
  align-items: normal;
  background-size: 100%;
}

#app canvas {
	display: block;  
	margin: 0;
	padding: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	z-index: -1;
}


.card {
  /*width: 500px;*/
  contain: content;
  height: auto;
  background: var(--color1);
  border: solid var(--color3) 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  position: absolute;
  top: 180px;
  left: 50%;
  /*min-width: 415px;*/
  max-width: 615px;
  transform: translate(-50%, -50%);
  }

.card2 {
  /*width: 700px;*/
  contain: content;
  height: auto;
  background: var(--color1);
  border: solid var(--color3) 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 20px;
  position: absolute;
  top: 440px;
  left: 50%;
  /*min-width: 415px;*/
  max-width: 615px;
  transform: translate(-50%, -50%);   
  }


.photoCell {
	border: solid 5px var(--color2);
	border-radius: 100%;
	align-items: center;
}
.photo {
	max-height: 362px;
	max-width: 362px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.signatureCell {
	/*align-items: left;*/
}
.signature {
	/*max-height: 201px;
	max-width: 979px;*/
	display: block;
	/*margin-left: auto;
	margin-right: auto; */
	width: 100%;
}


/* For mobile phones: */
[class*="col-"] {
  width: 80%;  
}

@media only screen and (max-width: 760px) {
  /* For tablets: */
  /*transform: scale(0.5);*/
  .col-card {width: 100%;}
  .col-card2 {width: 100%;}
  .col-photo-1 {width: 100%;}
  .col-signature-1 {width: 80%;}
}

@media only screen and (min-width: 760px) {
  /* For desktop: */
  /*transform: scale(0.5);*/
  .col-card {width: 100%;}
  .col-card2 {width: 100%;}
  .col-photo-2 {width: 100%;}
  .col-signature-2 {width: 100%;}
}

.cell {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;	
}
.text {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 5px #ffffff, 0 0 20px #000, 0 0 30px #000;
  overflow: visible;
  transform-style: preserve-3d;
}
a {
  text-decoration: none;
  color: #fff;
}
.requote {
	padding-left: 10px;
	cursor: pointer;
}