:root {
	--color-main: #bbdefb;
}
html, body {
  scrollbar-width: thin;
  scrollbar-color: #3358ff #e6f3ff;
}
/* Chrome/Safari/Edge */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #e6f3ff;
}
::-webkit-scrollbar-thumb {
  background-color: #3399ff;
  border-radius: 6px;
  border: 2px solid #e6f3ff;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #1a8cff;
}
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: "Quicksand", sans-serif;
	background: linear-gradient(to bottom, #e3f2fd 0%, var(--color-main) 50%, #90caf9 100%);
	max-width: 100%;
}
.hope-wall {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-main);
	background-image:
	linear-gradient(90deg, rgba(0, 0, 50, 0.07) 1px, transparent 1px),
	linear-gradient(180deg, rgba(0, 0, 50, 0.07) 1px, transparent 1px),
	radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 70%);
	background-size: 60px 30px, 60px 30px, 4px 4px;
	background-position: 0 0, 30px 15px, 0 0;
	box-shadow: inset 0 0 100px rgba(0, 0, 50, 0.15);
	opacity: 0.85;
	z-index: 0;
	pointer-events: none;
}
/* Awan */
.cloud {
	position: absolute;
	background: #ffffff;
	border-radius: 50%;
	opacity: 0.85;
	animation: float linear infinite;
	box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}
.cloud::before,
.cloud::after {
	content: "";
	position: absolute;
	background: #ffffff;
	border-radius: 50%;
}

@keyframes float {
	from {
		transform: translateX(-250px);
	}
	to {
		transform: translateX(120vw);
	}
}
/* end Awan */
.navbar .active{
	border-bottom: 2px solid #fff !important;
}
.navbar-nav a.nav-link{
	color: #fff;
	border-bottom: 2px solid transparent; 
	transition: border-color 0.4s ease; 
	margin: 0 5px;
}
.navbar .container .navbar-brand{
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	letter-spacing: 1.8px;
	font-size: 22px;
	border-bottom: 2px solid transparent; 
	transition: border-color 0.4s ease; 
}
.navbar .container .navbar-brand:hover, .navbar-nav a.nav-link:hover {
	border-bottom: 2px dashed #fff;
}
.hope-message {
	color: #4e4e4e;
	text-align: center;
	font-size: 42px;
	font-weight: bold;
	margin: 15px 0;
	z-index: 2;
	position: relative;
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	line-height: 1.2;
	letter-spacing: 2px;
}
/*button submit for create*/
.btn-submit {
	position: relative;
	padding: 10px 0;
	font-size: 18px;
	letter-spacing: 3px;
	font-weight: 600;
	border: none;
	border-radius: 15px;
	cursor: pointer;
	color: #fff;
	background: linear-gradient(135deg, #64b5f6, #42a5f5);
	overflow: hidden;
	transition: all 0.3s;
	box-shadow: 0 4px 10px rgba(100, 181, 246, 0.3);
}

.btn-submit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 200%;
	height: 100%;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.12),
		rgba(255, 255, 255, 0.12) 4px,
		transparent 4px,
		transparent 8px
	);
	transition: opacity 0.3s ease;
	opacity: 0;
	pointer-events: none;
}

.btn-submit:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, #42a5f5, #1e88e5);
	/*border-radius: 15px 30px 15px 30px;*/
}

.btn-submit:hover::before {
	animation: moveStripes 1.5s linear infinite;
	opacity: 1;
}

@keyframes moveStripes {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 100% 100%;
	}
}
/* end button submit for create*/

/*card hope*/
#card-hope{
	transition: all 0.5s ease;
	min-height: 200px;
}
#card-hope:hover {
	transform: translateY(-10px);
	cursor: pointer;
}
#card-hope tr td:nth-child(1){
	width: 50px;
}
#card-hope .text-muted{
	color: #000 !important;
	font-size: 15px;
}
#card-hope h5{
	font-size: 21px;
	font-family: "Caveat", cursive;
	line-height: 1.4;
	letter-spacing: 4px;
}
#card-hope .fa-eye{
	font-size: 14px;
}
/*end card hope*/

.card-title {
	font-size: 25px;
	font-family: "Caveat", cursive;
	line-height: 1.4;
	letter-spacing: 4px;
}  
.card-subtitle {
	font-size: 17px;
	line-height: 1.3;
	letter-spacing: 2px;
}
.popular-title {
	text-align: center;
	font-size: 29px;
	font-family: "Caveat", cursive;
	line-height: 1.4;
	letter-spacing: 6px;
	font-weight: 700;
}
@media (min-width: 1200px) {
	#containers {
		max-width: 850px;
	}
}