@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Knewave:wght@400&family=Dosis:wght@600;700;800&family=Assistant:wght@300;700&family=Londrina+Solid&family=Londrina+Shadow&family=Gloria Hallelujah:wght@400');
html {
  scroll-behavior: smooth;
   overscroll-behavior-y: none;
}

/* Body */
body {
	font-family: "Assistant";
	background-color: rgb(205,213,205);
	margin: 0;
	padding: 0;
}

/* Container */
.container {
    width: 100%;
    /*height: 1000px;*/
    overscroll-behavior-y: none;
}
/* Navigation */
header {
	width: 100%;
	height: 4em;
	position: fixed;
	background-color: rgb(205,213,205, .8);
	z-index: 100000;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

nav {	
	margin-left: 0;
	padding-left: 2%;
	padding-top: 1em;
	text-align: left;
	color: #FFFFFF;
}
header nav ul {
	list-style: none;
	display: flex;
	min-width: 50%;
	padding: 0;
	margin: 0;
}
nav ul li {
	align-self: flex-end;
	padding-right: 1em;
	color: #E47A00;
	font-size: 1.5em;
	text-align: left;
	transition: all 0.1s linear;
}
nav ul li a {
	width: 1em;
	color: #000;
	text-decoration: none;
}
nav ul li a:hover {
	filter:invert();
}

nav ul li a.org {
	width: 1em;
	color: #E47A00 !important;
	text-decoration: none;
}
a.org:hover {
	color: #000 !important;
}

a.org:active {
	color: #E47A00 !important;
		filter:none;
		background: none;
}

nav li h2 {
	align-self: flex-end;
	color: #E47A00 !important;
	font-size: 1em;
	font-weight: 300;
	/*text-shadow: 0px 0px 3px #FFF;*/
	margin: 0;
	padding: 0;
}

.text-collapse {
  	display: block;
  	height: 0;
  	overflow: hidden;
  	-webkit-transition: all 0s 9999999s;
	transition: all 0s 9999999s;
    color: #fff !important;
}

.reveal:focus ~ .text-collapse {
	display: inline;
	height: auto;
	overflow: visible;
	-webkit-transition: all 0s;
    transition: all 0s;
}

.reveal {
	display: block;
	color: #E47A00;
	cursor: pointer;
}

.reveal:focus {
	color: #FFF;
	transition: all 0.5s ease;
}

.reveal:focus i {
	transform: rotate(180deg);
	transition: all 0.5s ease;
}

.orange {
	color: #E47A00;
	font-weight: 700;
	text-shadow: 0px 0px 3px #000;
}

button.hello {
	width: 12em;
	margin: 0 auto 0 auto;
    font-family: "Assistant";
    font-size: 1.6em;
    font-weight: 700;
    color: #FFFFFF;
	background: rgba(255, 255, 255, 0.2); 
  	backdrop-filter: blur(6px);
  	-webkit-backdrop-filter: blur(6px);
	text-shadow: 0px 0px 3px #000;
	text-align: center;
	border: 3px solid #FFFFFF;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 10px 20px;
	border-radius: 30px;
	cursor: pointer;
}

button.hello:hover {
	color: #000;
	border-color: #000;
	background-color: #00B5E4;
	box-shadow: none;
	text-shadow: 0px 0px 3px #FFF;
	transition: all .1s linear;		
}

.popup {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.2); 
  	backdrop-filter: blur(4px);
  	-webkit-backdrop-filter: blur(4px);
	color: #fff;
	display: none;
	z-index: 500000;
}

#card:target {
	display: block;
	height: 100%;
	opacity: 1;
    animation: fade 1.5s ease-out;
}

@keyframes fade {
  0% { opacity: 0.0 }
  80% {opacity: 0.0}
  100% { opacity: 1 }
}

#card section {
	width: 80%;
	max-width: 400px;
	height: 80%;
	max-height: 600px;
	overflow: scroll;
	margin: 5% auto;
	background: linear-gradient(65deg, rgba(9,162,237,0.8253676470588236) 0%, rgba(237,175,9,0.8253676470588236) 45%, rgba(255,156,1,0.8757878151260504) 65%, rgba(204,145,1,0.861782212885154) 85%, rgba(81,184,246,0.8743872549019608) 100%);
    background-size: 400% 400%;
    animation: gradient 120s ease infinite;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: relative;
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 20px 10px -10px rgba(0, 0, 0, 0.5);
}


.popup h2 {
	font-family: "Londrina Solid";
	font-size: 3em !important;
	line-height: 2em;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	padding:0;
	margin: 0;
}

.popup-p {
	font-size: 1.5em !important;
	padding-bottom: 2em;
}

a.close-popup {
	color: #fff;
	text-decoration: none;
	font-size: 1.4em;
	text-align: right;
  	top: 30px;
  	right: 20px;
	display: block;
}

a.close-popup:hover {
	color: #000 !important;
}

a.close-popup:visited {
	color: #fff;
	text-decoration: none;
}

.memoji {
	margin: 0;
	padding: 0;
	/*height: 150px;*/
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/memoji.png);
	background-attachment: fixed;
    background-size: fill;
    background-repeat: no-repeat;
}

/* Parallax Section */
.fugly {
    background-color: #CCC;
    background-image: url(../images/ugly.png);
	display: flex;
	flex-flow: column wrap;
	justify-content: flex-start;
	height: 100%;
    min-height: 1080px;
    width: 100%;
    padding-top: 5.2em;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    box-shadow: inset 0px 10px 12px -12px #333,
    inset 0px -10px 12px -12px #333; 
}
.fugly-text {
    color: #000;
	text-shadow: 0px 0px 6px #FFF;
	font-family: "Londrina Shadow";
	font-size: 4em;
    text-align: right;
    letter-spacing: .04em;
	width: 60%;
	align-self: flex-end;
	padding-right: 3%;
}
.fugly-description {
	color: #000000;
	text-shadow: 0px 0px 1px #FFF;
    font-size: 1.8em;
    text-align: right;
    line-height: 1.5em;
	max-width: 50%;
	align-self: flex-end;
	padding-right: 3%;
}
button a {
	text-decoration: none;
	color: inherit;
}

button.get-handsome {
    font-family: "Assistant";
    font-size: 1.6em;
    color: #000000;
	background: rgba(255, 255, 255, 0.2); 
  	backdrop-filter: blur(6px);
  	-webkit-backdrop-filter: blur(6px);
	text-shadow: 0px 0px 3px #FFF;
	border: 3px solid #000000;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	cursor: pointer;
	border-radius: 30px;
	opacity: 0;
	transition: opacity 2s linear;
	transition-delay: 1s;
	width: 10em;
	padding: 10px 20px;
	align-self: flex-end;
	margin-right: 3%;
}

button.get-handsome.is-visible {
	opacity: 1;
	color: #000000;
	background: rgba(255, 255, 255, 0.2); 
  	backdrop-filter: blur(6px);
  	-webkit-backdrop-filter: blur(6px);
	text-shadow: 0px 0px 3px #FFF;
	border: 3px solid #000000;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

button.get-handsome.is-visible:hover {color: #FFFFFF;
	border-color: #FFFFFF;
	background-color: #E47A00;
	box-shadow: none; 
	transition: all .1s linear;	
}

.scribble {
	font-family: "Gloria Hallelujah";
	font-size: 1.5em;
	color: #00B5E4;
}

.fugly .scribble {
	color: #fff;
	margin-top: 3%;
	padding-left: 1em;
	transform: rotate(-4deg) scale(0.0);
	max-width: 85%;
	max-height: 3.5em;	
	transition: transform .8s ease-in;
	transition-delay: 1s;
	align-self: flex-start;
}

.fugly .scribble.is-visible {
	transform: rotate(-8deg) scale(1);
}

.curved-arrow {
	color: #fff;
	transform: rotate(158deg) translate(-21px, -9px) scaleX(-1);
	max-width: 30px;
	height: 1.5em;
}

.handsome {
    background-color: #ffbd2f;
    background-image: url(../images/handsome.png);
    display: flex;
	flex-flow: column wrap;
	justify-content: flex-start;
	height: 100%;
    min-height: 1080px;
    width: 100%;
	padding-top: 6%;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 20%;
    border-top: 1px solid #000000;
}

.handsome-text {
    color: #FFFFFF;
	text-shadow: 0px 0px 6px #000;
	font-family: "Knewave";
	font-size: 4em;
    text-align: right;
    letter-spacing: .03em;
	width: 80%;
	align-self: flex-end;
	padding-right: 2%;
}

.fly-in {
	transform: translate3d(-500px, 0px, 0px);
	transition: transform 1s, opacity 1s ease-out;
	transition-delay: .2s;
	opacity: 0;
}

.fly-in.is-visible
 {
	transform: translate3d(0px, 0px, 0px);
	opacity: 1;
}

.handsome-description {
	font-weight: 700;
    color: #FFFFFF;
	text-shadow: 0px 0px 3px #000;
    font-size: 2em;
    text-align: right;
    line-height: 38px;
    width: 40%;
	align-self: flex-end;
	padding-right: 3%;
}

button.ding-dong {
    font-family: "Assistant";
    font-size: 1.6em;
    font-weight: 700;
    color: #FFFFFF;
	background: rgba(255, 255, 255, 0.2); 
  	backdrop-filter: blur(6px);
  	-webkit-backdrop-filter: blur(6px);
	text-shadow: 0px 0px 3px #000;
	border: 3px solid #FFFFFF;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 10px 20px;
	border-radius: 30px;
	opacity: 0;
	cursor: pointer;
	transition: opacity 1s linear;
	transition-delay: 1s;
	width: 12em;
	padding: 10px 20px;
	align-self: flex-end;
	margin-right: 3%;
}

button.ding-dong.is-visible {
	opacity: 1;
}

button.ding-dong:hover {
	color: #000;
	border-color: #000;
	background-color: #00B5E4;
	box-shadow: none;
	text-shadow: 0px 0px 3px #FFF;
	transition: all .1s linear;
}

.handsome .scribble {
	align-self: flex-end;
	margin-right: 12%;
	margin-top: 6%;
	max-width: 85%;
	max-height: 3.5em;
	transform: rotate(11deg) scale(0.0);
	transition: transform .5s ease-in;
	transition-delay: 2s;
	font-size: 1.8em;
	color: #00B5E4;
}

.handsome .scribble .curved-arrow {
	color: #00B5E4;
	transform: rotate(158deg) translate(11px, -9px) scaleX(1);
}

.handsome .scribble.is-visible {
	transform: rotate(11deg) scale(1);
}


/* About Section */
#about {
    background-color: #FFFFFF;
    padding: 10% 5% 25% 5%;
    background-image: url(../images/yearbook-xray.png);
    background-attachment: fixed;
    background-size: cover;
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}

.frost {
	background: rgba(0, 0, 0, 0.8); 
  	backdrop-filter: blur(10px);
  	-webkit-backdrop-filter: blur(6px);
	/*border: 2px solid #E47A00;*/
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 16px 0 rgba(0, 0, 0, 0.4);
	width: 80%;
	margin: 2% auto;
	padding-bottom: 4%;
	opacity: 0;
	transform:
    perspective(750px)
    translate3d(0px, 0px, -250px)
    rotateX(27deg)
    scale(0.9, 0.9);
 	transition: opacity .3s ease-out, transform .3s ease-out;
 	will-change: opacity, transform;
}

.frost.is-visible {
    opacity: 1;
    transform: translate3d(0px, 0px, -250px);
  }

.frost .scribble {
	color: #00B5E4;
	transform: rotate(0deg);
	transform: scale(0.0);
	opacity: 0;
	transition: opacity .5s ease-out, transform .5s ease-out, rotate .8s ease-out;
 	will-change: opacity, transform;
	transition-delay: 1s;
	overflow: hidden;
}

.frost .scribble.is-visible {
	opacity: 1;
	transform: rotate(6deg) scale(1);
}

.frost .scribble .curved-arrow {
	color: #00B5E4;
	transform: rotate(18deg) translate(9px, 10px);
}

h2.subtitle {
	font-family: "Dosis";
	font-size: 2.5em;
	font-weight: 800;
	text-align: center;
	color: #FFFFFF;
	text-shadow: 0px 0px 5px #00B5E4;
	margin: 0;
	padding: 5%;
}

.promo-text {
	font-size: 1.3em;
	text-align: justify;
	color: #FFFFFF;
	padding: 3% 5% 0% 5%;
}

.about .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 0%;
	margin-bottom: 5%;
	padding-bottom: 5%;
}
.about .text_column {
	width: 40%;
	padding: 2% 2% 4% 2%;
	text-align: justify;
	font-size: 1em;
	color: #FFF !important;
}

.about .text_column h3{
	text-align: left;
	/*color: #E47A00;*/
}

button.work-it {
    font-family: "Assistant";
    font-size: 1.6em;
    font-weight: 700;
    color: #FFFFFF;
	background: rgba(255, 255, 255, 0.2); 
  	backdrop-filter: blur(6px);
  	-webkit-backdrop-filter: blur(6px);
	text-shadow: 0px 0px 3px #000;
	border: 3px solid #FFFFFF;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 10px 20px;
	border-radius: 30px;
	cursor: pointer;
	transition: opacity 1.5s linear;
	width: 12em;
	align-self: flex-end;
	margin-top: 3%;
	opacity: 0;
}

button.work-it.is-visible {
	opacity: 1;
}

button.work-it:hover {
	color: #000;
	border-color: #000;
	background-color: #33CCCC;
	box-shadow: none;
	text-shadow: 0px 0px 3px #FFF;
	transition: .1s linear;
}

/* More info */
footer {
	padding-bottom: 35px;
	background: linear-gradient(-60deg, #ffa442, #ffa45a, #12d4ff);
    background-size: 300% 300%;
    animation: gradient 15s ease infinite;
    box-shadow: inset 0px 10px 12px -12px #333,
    inset 0px -10px 12px -12px #333; 
}

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

h2.foot_subtitle {
	font-family: "Dosis";
	font-weight: 800;
	font-size: 5em;
	line-height: 1em;
	text-align: center;
	color: #2D9AB7;
	-webkit-text-stroke: 1px #fff;
	/*text-shadow: 0px 0px 5px #FFF;*/
	margin: 0;
	padding-top: 6%;
	padding-bottom: 5%;
}

h4.foot_subtitle {
	font-family: "Dosis";
	font-weight: 800;
	font-size: 2em;
	line-height: 1em;
	text-align: center;
	color: #FFF;
	/*text-shadow: 0px 0px 5px #00B5E4;*/
	margin: 0;
	padding-top: 1%;
}

footer .text_column h3 {
	color: #2D9AB7;
	text-align: center;
	font-size: 2.2em;
	font-family: "Dosis";
	font-weight: 600;
}

footer .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 0%;

}
footer .text_column {
	width: 40%;
	padding: 2%;
	text-align: justify;
	font-size: 1.2em;
	color: #000;
}

footer .footer_column p {
	color: #717070;
	background-color: #FFFFFF;
}
.cards {
	max-width: 600px;
	height: auto;
	padding: 2% 6% 2% 6%;
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 50px 40px -20px rgba(0, 0, 0, 0.2);
	transform:
    perspective(750px)
    translate3d(0px, 0px, -250px)
    rotateX(27deg)
    scale(0.9, 0.9);
	opacity: 0;
 	transition: opacity .3s .25s ease-out, transform .3s .25s ease-out;
 	will-change: transform, opacity;
}

.cards.is-visible {
    opacity: 1;
    transform: translate3d(0px, 0px, -250px);
  }

.cards img {
 	width: 100%;
  	height: auto;
  	display: block;
}

.card-rounded {
	width: 82%;
	height: 80%;
	min-height: 600px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border: 3px solid #FFF;
	border-radius: 10px;
	padding: 5%;
	background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(18,212,255,0.8337710084033614) 39%, rgba(255,201,116,0.8225665266106442) 55%, rgba(255,255,255,0) 100%);
    background-size: 300% 300%;
    animation: gradient 30s ease infinite;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transform:
    perspective(750px)
    translate3d(0px, 0px, -250px)
    rotateX(27deg)
    scale(0.9, 0.9);
	opacity: 0;
 	transition: opacity 1.5s 0.8s ease-out, transform 1.5s 0.8s ease-out;
 	will-change: transform, opacity;
}

.card-rounded.is-visible {
    opacity: 1;
    transform: translate3d(0px, 0px, -250px);
  }

.card-rounded p {
	font-size: 1.2em;
	text-align: justify;
	color: #FFF;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #717070;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}
.footer_banner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	height: 100%;
	margin-top: 0%;
	margin-bottom: 0;
	padding-top: 6%;
	padding-bottom: 5%;
	background: url(../images/anonymous.png);
    background-attachment: fixed;
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #E47A00;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.footer_banner p {
	margin-bottom: 5%;
}

p.fineprint {
	color: #FFF;
	margin-top: 9%;
	font-size: .8em !important;
}

.hidden {
	visibility: hidden;
}

/* Mobile */

@media only screen and (max-device-width: 320px) {

.fugly{
	background-position: center !important;
}

.handsome{
	background-position: center !important;
	}

}

@media screen and (max-width: 575px) {

	.fugly{
	height: 100%;
	background-image: url(../images/ugly-crop.png);
	background-attachment: scroll;
	background-position: center !important;
	}
	.fugly-text{
	font-family: "Londrina Shadow";
	font-size: 3em !important;
	line-height: 1em;
	width: 75%;
	margin-top: 3%;
}
	.fugly-description {
	font-size: 1.4em !important;
	font-weight: 700;
	line-height: 1.5em !important;
	max-width: 60%;
	text-shadow: 0px 0px 8px #FFF;
}

.fugly .scribble {
	max-width: 85%;
	padding-left: 1em;
	transition-delay: 0s;
}
	
	.handsome{
	height: 100%;
	padding-top: 14%;	
	}
	.handsome-text {
	font-size: 1.8em;
}
	.handsome-description {
	font-size: 1.4em;
	line-height: normal;
	width: 60%;
}
	
	button.get-handsome {
    font-size: 1.2em;
	border: 1px solid #000000;
	width: 11em;
	}
	
	button.ding-dong {
    font-size: 1.2em;
	border: 1px solid #FFF;
		width: 12em;
	}
	
	
section.handsome .scribble .curved-arrow {
	transform: rotate(251deg) translate(-2px, -3px) scaleX(1);
}
	
	.frost {
	width: 90%;	
}
	
	button.work-it {
    font-size: 1.2em;
	border: 2px solid #FFF;
	width: 12em;
	}
	
	h2.subtitle {
		font-size: 1.5em;
	}
	
	h2.foot_subtitle {
	font-size: 2em;
	}
	
	.text_column {
		min-width: 80% !important;
		flex-flow: column wrap;
	}
	

.card-rounded {
		height: 95%;
}

.card-rounded p {
	font-size: 1.2em;
	text-align: justify;
	color: #FFF;
}

.footer_banner {
	background-image: url(../images/anonymous.png);
    background-attachment: scroll;
    background-position: center bottom;
    background-size: cover;
}

}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

.fugly{
	height: 100%;
	background-image: url(../images/ugly.png);
	background-attachment: scroll;
	background-position: 30%;
	}
	
	.fugly-description {
	font-size: 2em;
	font-weight: 700;
	line-height: normal;
	width: 60%;
	text-shadow: 0px 0px 8px #FFF;
}

.handsome{
	height: 100%;
	background-attachment: scroll;
	text-align: left;
	}
	
section.handsome .scribble .curved-arrow {
		transform: rotate(251deg) translate(-2px, -3px) scaleX(1);
	}
		
	
#about {
    background-attachment: scroll;
 	background-position: 30%;
 	background-size: 50%;
}	

.footer_banner {
	background-image: url(../images/anonymous.png);
    background-attachment: scroll;
    background-position: center bottom;
    background-size: cover;
}

	h2.foot_subtitle {
	font-size: 3em;
	}
	
	.card-rounded p {
	font-size: 1.2em;
}

}

/* Small Tablets */
@media only screen and (max-width: 820px) {
	.fugly{
	height: 100%;
	background-image: url(../images/ugly-crop.png);
	background-attachment: scroll;
	background-position: right;
	}
	.fugly-text{
	font-size: 2.5em;
}
	.fugly-description {
	font-size: 1.5em;
	line-height: normal;	
}

.fugly .scribble {
	margin-top: 7%;
	padding-left: 1em;
	transform: rotate(-3deg) scale(0.0);
	max-width: 85%;
}

	.handsome{
	height: 100%;
	background-attachment: scroll;
	text-align: left;
	}
	.handsome-text {
	font-size: 2.5em;
	text-align: left;
	align-self: flex-start;
	padding-left: 3%;
}
	.handsome-description {
	font-size: 1.5em;
	text-align: left;
	align-self: flex-start;
	padding-left: 3%;
}

button.ding-dong {
	align-self: flex-start;
	margin-left: 3%;
}

section.handsome .scribble .curved-arrow {
	transform: rotate(251deg) translate(-2px, -3px) scaleX(1);
}
	

#about {
    background-attachment: scroll;
 	background-position: 30%;
 	background-size: 50%;
}
	
	h2.subtitle{
		font-size: 1.9em;
	}
	
	h2.foot_subtitle {
	font-size: 3.5em;
	}
	
		.text_column {
		min-width: 80% !important;
		flex-flow: column wrap;
	}
	
	.footer_banner {
	background-image: url(../images/anonymous.png);
    background-attachment: scroll;
    background-position: center bottom;
    background-size: cover;
}
	
}

/*Small Desktops */
@media only screen 
  and (min-device-width: 834px) 
  and (max-device-width: 1112px)
  and (-webkit-min-device-pixel-ratio: 2) {

.thumbnail {
	width: 50%;
}

.fugly{
	height: 140%;
	background-image: url(../images/ugly.png);
	background-attachment: scroll;
	background-position: center;
	}
	
	.fugly .scribble {
	margin-top: 0;
	padding-left: 2em;
	transform: rotate(-3deg) scale(0.0);
	max-width: 85%;
}
	
.handsome {
	height: 140%;
	background-attachment: scroll;
	text-align: left;
	
}
.handsome-text {
	text-align: left;
	align-self: flex-start;
	padding-left: 3%;
}
.handsome-description {
	text-align: left;
	align-self: flex-start;
	padding-left: 3%;
}

button.ding-dong {
	align-self: flex-start;
	margin-left: 3%;
}
#about {
    background-attachment: scroll;
 	background-position: 30%;
 	background-size: 50%;
}

.footer_banner {
	background-image: url(../images/anonymous.png);
    background-attachment: scroll;
    background-position: right bottom;
    background-size: 80%;
}

	h2.foot_subtitle {
	font-size: 4em;
	}

}

/*@media screen and (min-height: 1350px) {
	
	.fugly {
	height: 300%;
	}
.handsome {
	height: 300%;
}*/

/*HUGE Desktops 
@media screen and (min-width: 1200px) and (max-width: 6000px) {


.fugly {
	height: 350%;
	min-height: 2000px;
	}
.handsome {
	height: 350%;
	min-height: 2000px;
}

}*/
