@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Caveat+Brush|Acme:400,1000');




.grid-container {
	align-items: center;
	justify-content: center;
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: 25% 75%;
	padding: 0px;
}
.grid-item {
	background-color: rgba(140, 158, 237, 0.5);
	border: 1px solid rgba(215, 184, 99, 0.8);
	border-radius: 5px;
	padding: 5px;
	font-size: 48px;
	text-align: center;
}
.time-offset-container {
	text-align: center;
	background-color: rgba(140, 158, 237, 0.5);
	color: rgb(255, 224, 119);
	font-size: 28px;
	border: 1px solid rgba(215, 184, 99, 0.8);
	border-radius: 5px;
	padding: 5px;
	grid-column: 1 / span 2;
}
#time-offset {
	height: 32px;
	color: rgb(255, 224, 119);
	font-weight: 600;
	font-size: 24px;
	background-color: rgba(140, 158, 237, 0.5);
}
.loading-gif-container {
	text-align: center;
}
#loading-gif {
	width: 5%;
	text-align: center;
}
#from-timezone{
	height: 24px;
}
#to-timezone{
	height: 24px;
}
#from-time {
	color: rgb(255, 224, 119);
}
#to-time {
	color: rgb(255, 224, 119);
}

/*responsive*/
@media only screen and (max-width: 1080px) {
	
	.grid-item {
		font-size: 72px;
	}
	#loading-gif {
		width: 20%;
	}
	#from-timezone{
		width: 350px;
		height: 48px;
		font-size: 24px;
		font-weight: 600;
	}
	#to-timezone{
		width: 350px;
		height: 48px;
		font-size: 24px;
		font-weight: 600;
	}
	.time-offset-container {
		font-size: 36px;
	}
	#time-offset {
		height: 54px;
		font-size: 48px;
	}
	
}


