body {
	margin: 0px;
	background-image: url(resources/alhambra.jpg);
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#languages {
	display: flex;
	flex-direction: row;
	padding-left: 15px;
}

.lang-button {
	width: 50px;
	height: 50px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	border-radius: 15px 15px 0px 0px;
	margin-right: 1em;
}

.lang-button:active {
	filter: brightness(50%);
}

#spanish {
	background-image: url(resources/spanish.png);
}

#english {
	background-image: url(resources/english.svg);
}

#french {
	background-image: url(resources/french.png);
}

#german {
	background-image: url(resources/german.png);
}

#card {
	width: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	border: 2px rgb(70, 121, 191) solid;
	border-radius: 1em;
	padding: 1em;
	background-color: rgba(80, 122, 180, 0.5);
	backdrop-filter: blur(5px);
	font-family: "Roboto", sans-serif;
	color: white;
}

#card>div {
	display: flex;
	flex-direction: column;
	width: 40%;
}

#side-separator {
	width: 2px !important;
	background-color: rgb(70, 121, 191, 0.5);
	align-self: stretch;
	border-radius: 1px;
}

#right-side>*{
	margin: 1rem;
}

#buttons {
	display: flex;
	flex-wrap: nowrap;
}

#tel-number {
	background-color: rgb(45, 189, 67);
	border: 2px solid rgb(36, 159, 55);
	border-radius: 15px;
	color: white;
	flex-grow: 3;
}

#tel-number:active {
	background-color: rgb(36, 159, 55);
}

#telegram {
	background-color: #21a9e7;
	border: 2px solid #1e97cf;
	border-radius: 15px;
	color: white;
	flex-grow: 1;
	font-size: 1.5em;
}

#telegram:active {
	background-color: #1e97cf;
}

#telegram h1 {
	margin: none;
}

#right-side>span{
	font-size: 1.2em;
}

#left-side>img{
	width: 100%;
	border-radius: 15px;
}

#left-side>h1{
	font-style: italic;
}

#left-side>span{
	font-size: 1.3em;
	font-style: italic;
}

.info-card{
	border-radius: 5px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 1em;
	font-size: 1.25rem;
}

.info-card>span {
	flex-grow: 2;
	margin-left: 1em;
}

#airport-card {
	background-color: #3c81dd;
	border: 2px solid #3069b2;
}

#hotel-card {
	background-color: #3c6cdd;
	border: 2px solid #2e51a4;
}

#car-card {
	background-color: #3c3fdd;
	border: 2px solid #3033b2;
}

#car-card img{
	filter: invert(100%) sepia(0%)hue-rotate(138deg) brightness(1000%) contrast(102%);
	width: 35px;
}
@media (max-width: 700px) {

	body {
		height: auto;
		padding: 0.6em;
	}

	#card {
		flex-direction: column;
	}

	#card > div {
		width: auto;
	}

}

@media (max-width: 850px) {

	body {
		height: auto;
		padding: 0.6em;
	}

	#card {
		align-items: start;
	}

	#left-side>h1{
		margin-top: 0.2em;
		margin-bottom: 0.2em;
	}

	#right-side>*{
		margin: 0.3em 0.1em;
	}

	#right-side>div {
		display: flex;
		align-items: stretch;
		padding: 0.3em;
	}

	#buttons {
		margin-bottom: 1.7em;
	}


}

@media (max-height: 600px) {

	body {
		height: 100%
	}
}
