@font-face{
	font-family: Quicksand-Light;
	src: url('Quicksand-Light.ttf');
}
html{
	font-size: 20px;
}
body{
	padding: 10px;
}
*{
	font-family: Quicksand-Light, Tahoma;
	font-size: 1rem;
}
a{
	text-decoration: none;
	color: #0d6efd;
}
#text{
	margin-bottom: 10px;
}
.text{
	max-height: 50px;
	overflow-y: scroll;
	font-size: 0.7rem;
	width: 97%;
}
textarea{
	width: 100%;
}
.btn{
	padding: 3px;
	border-radius: 3px;
	margin: 2px;
	font-size: 0.8rem;
	cursor: pointer;
}
.copy-button{
	background-color: deepskyblue;
	color: white;
}
.delete-button{
	background-color: red;
	color: white;
}
#result{
	min-height: 40px;
}
.date{
	font-size: 0.7rem;
	color: gray;
}
#save{
	background-color: deepskyblue;
	color: white;
	padding: 5px;
}
.text-container{
	border: 2px dashed silver;
	border-radius: 5px;
	padding: 10px;
	background-color: ghostwhite;
	margin: 10px;
}
#copyright,#copyright a{
	font-size: 0.6rem;
	text-align: center;
}
h1{
	font-size: 1.5rem;
	background-color: #3498db;
	color: white;
	padding: 5px;
	border-radius: 4px;
	font-weight: bold;
}





.bubblingG {
	text-align: center;
	width:78px;
	height:49px;
	margin: auto;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin: 24px auto;
	background: rgb(0,0,0);
	border-radius: 49px;
	animation: bubblingG 1.5s infinite alternate;
}
#bubblingG_1 {
	animation-delay: 0s;
}
#bubblingG_2 {
	animation-delay: 0.45s;
}

#bubblingG_3 {
	animation-delay: 0.9s;
}


@keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(0,0,0);
		transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgb(255,255,255);
		transform: translateY(-20px);
	}
}