@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Roboto+Mono&family=Shrikhand&display=swap');

html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	background: rgb(207,91,65);
	background: linear-gradient(118deg, rgba(207,91,65,1) 0%, rgba(187,0,81,1) 51%, rgba(97,36,85,1) 100%);
	font-size: 38px;
	font-family: 'Fjalla One';
	color: #fff;
	line-height: 3.8rem;
} 

h1 {font-size: 5.5rem; line-height: 5rem; font-family: 'Monoton';}
h2 {font-size: 4.5rem; line-height: 4rem; font-family: 'Yeseva One'; letter-spacing: -0.10rem;}
h3 {font-size: 3.5rem; line-height: 3rem;}
p {margin: 0;}




#wrapper {border: solid 0px #fff; max-width: 95%;}
#container {border: solid 1px #999;}

.vertical-center {position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); -moz-transform: translate(-50%,-50%); -o-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%);}
.shorizontal-center {position: fixed; left: 50%; transform: translateX(-50%); -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -o-transform: translateX(-50%); -ms-transform: translateX(-50%);}






input {border: 0; font-size: 22px; padding: 10px; color:#999; border-radius: 5px; vertical-align: text-bottom; font-family: sans-serif; font-weight: 100;}
input[type=submit] {color: #666; font-family: 'Fjalla One'; margin-top: 15px;}

#urlField {
	width: 600px;
	max-width: 100%;
}

.uppercase {text-transform: uppercase;}
.center {text-align: center;}

.clickToCopy {
	width: 150px;
    position: absolute;
    top: -50px;
}

.clickToCopy {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.copyIconMobile {display: none;}
.copyIconDesktop {display: block; right: -130px;}

@media only screen and (max-width: 650px) {
	body {
		font-size: 28px;
	}
	.fa-copy {
		margin-top: 15px;
	}
	.clickToCopy {
		top: 110px;
		left: 40px;
	}
	.copyIconDesktop {display: none;}
	.copyIconMobile {display: block;}
}
