.lexend-deca-<uniquifier > {
	font-family: "Lexend Deca", sans-serif;
	/*	font-optical-sizing: auto;*/
	font-weight: <weight>;
	font-style: normal;
}

.roboto-condensed-<uniquifier > {
	font-family: "Roboto Condensed", sans-serif;
	/*	font-optical-sizing: auto;*/
	font-weight: <weight>;
	font-style: normal;
}

body {
	font-family: "Roboto Condensed", sans-serif;
	background: url("../img/bac2.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin: auto;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	margin: auto;
}

.page {
	color: #EBF4FA;
	width: 50%;
	max-width: 400vh;
	height: auto;
	min-height: 50vh;
	background-color: #9FC1CC;
	padding: 30px;
	border-radius: 55px;
	line-height: 1.6;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*Map*/
#map {
	max-height: 400px;
	border-radius: 25px;
	padding: 0px;
	margin: auto auto;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/*Start of code from weather*/
/*Weather*/
.weather-container {
	background: #9FC1CC;
	border-radius: 15px;
	padding: 30px;
	/*margin-top: 25px;*/

}

.weather-grid {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	padding: 10px;
}

.weather-day {
	background: #F8FDEB;
	border-radius: 35px;
	padding: 12px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date {
	font-family: "Lexend Deca", sans-serif;
	color: #1B435A;
	font-size: 1.1em;
	margin-bottom: 8px;
}

.temp {
	font-family: "Lexend Deca", sans-serif;
	color: #F7BE67;
	line-height: 25px;
}

.condition {
	font-family: "Lexend Deca", sans-serif;
	color: #1B435A;
	margin-top: 8px;
}

/*.error {
	color: #F7BE67;
	padding: 15px;
	text-align: center;
}*/
/*Ends of code from weather*/
/*anim*/
#block {
	margin: 0;
	justify-content: center;
	position: absolute;
	width: 15px;
	height: 32px;
	/*background: #f80;*/
	animation-name: plane;
	animation-duration: 8s;
	border-radius: 99px;
	/*	position: relative;
	animation-fill-mode: forwards;*/
	transition: all 1s ease, transform 0.6s ease;
}

#block:hover {
	/*	background: #083;*/
	width: 600px;
	height: 4px;
	animation: move 8s;
}

@keyframes plane {
	from {
		transform: translateX(-400px);
	}

	to {
		transform: translateX(275px);
	}
}

/*@keyframes fly {
	from {
		transform: translateX(-300px);
	}

	to {
		transform: translateX(0px);
	}
}*/


#cloud {
	margin: 0;
	justify-content: center;
	max-width: 100px;
	position: absolute;
	margin-left: -400px;
	margin-top: 40px;
}

#pla {
	width: 100px;
	position: absolute;
	animation: fly 8s linear forwards;
	animation-name: plane;
}

h1 {
	font-size: 1.5em margin-bottom: 15px;
	text-align: center;
	border-radius: 9px;
	font-family: "Lexend Deca", serif;
	color: #1B435A;
}

h2 {
	font-size: 1.5em;
	color: #F7BE67;
	margin-bottom: 15px;
	text-align: center;
	border-radius: 9px;
	font-family: "Roboto Condensed", serif;
}
