@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lilita+One&family=Noto+Sans&display=swap');

* {
	padding:0;
	margin:0;
}

body {
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-start;
	background-color:#fdfffc;
	background-image:url("../assets/flower.webp");
	background-size:cover;
}

header {
	width:100%;
}

h1 {
	font-family:'Dancing Script', cursive;
	font-size:48px;
	padding:15px;
}

#calander-today {
	opacity:.6;
	cursor:pointer;
	background-color:#0006;
	border-radius:50%;
	padding:5px;
	width:40px;
	height:40px;
	position:fixed;
	right:50px;
	bottom:110px;
}

#calander-today:hover {
	opacity:.8;
}

#searchDiv {
	font-family:'Noto Sans', sans-serif;
	position:fixed;
	right:50px;
	bottom:50px;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	background-color:#0003;
	border-radius:50px;
	padding:5px;
}

#searchDiv:hover {
	background-color:#0004;
}

#inputDiv {
	flex-direction:row;
	align-items:center;
	justify-content:center;
	gap:5px;
	display:none;
	margin-left:10px;
}

#monthInput, #yearInput {
	width:75px;
	height:30px;
	background-color:#efd6ac44;
	border-radius:5px;
	border:none;
	text-align:center;
}

#monthInput:focus, #yearInput:focus {
	outline:none;
	background-color:#efd6ac65;
}

#calander-month {
	height:40px;
	width:40px;
	cursor:pointer;
	opacity:.5;
}

#calander-month:hover {
	opacity:.8;
}

#app {
	width:98%;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	gap:5px;
	font-family:'Lilita One', cursive;
	font-weight:bold;
}

#container {
	background-color:#45699044;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-start;
	outline:solid #45699033 3px;
	box-shadow:10px 10px 8px 2px #45699022;
	border-radius:4px;
	width:72%;
}

.arrow {
	opacity:.4;
	cursor:pointer;
}

.arrow:hover {
	opacity:1;
}

#heading {
	padding:10px;
	font-size:20px;
}

#calander {
	width:100%;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:flex-start;
	flex-flow:wrap;
}

.cell {
	width:calc(100% / 7);
	height:70px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#161925;
}

.cell-highlight {
	font-size:26px;
}

footer {
	padding:15px;
}

footer a {
	font-family:'Noto Sans', sans-serif;
	color:#70798c;
}

@media(max-width:650px) {
	.cell {
		height:55px;
	}

	body {
		background-image:url("../assets/flower-portrait.webp");
	}

	.arrow {
		width:24px;
		height:24px;
	}

	#container {
		width:100%;
	}
}

::placeholder {
	text-align:center;
	font-size:14px;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance:none;
	margin:0;
}

input[type=number] {
	-moz-appearance:textfield;
}
