@import url("https://fonts.googleapis.com/css2?family=Jaldi&family=Source+Sans+Pro:wght@400;700&display=swap");

:root {
	--headline-color: #fff;
	--text-color: #333;
	--seezeit-color: #00aeb0;
	--agora-color: #e63137;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background: url(../img/iStock-1065897876\ 1.jpg) no-repeat center center/cover;
	padding: 30px;
}

a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	padding: 20px;
}

a:hover {
	text-decoration: underline;
}

.headline {
	font-family: "Jaldi", sans-serif;
	font-size: 4.25rem;
	font-weight: 400;
	color: var(--headline-color);
	text-align: center;
	padding-bottom: 95px;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.25);
}

.main-content {
	display: flex;
	gap: 35px;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	line-height: 28.8px;
	text-align: center;
	color: var(--text-color);
}

.hotel-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 365px;
	width: 50%;
	max-width: 535px;
	padding: 25px;
	background: rgba(255, 2555, 255, 0.55);
}

.icon {
	height: 90px;
	width: auto;
	padding-bottom: 25px;
}

.hotel-container-text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.address {
	padding: 10px 0 20px;
}

.name {
	font-weight: 700;
}

.btn {
	border: none;
	cursor: pointer;
}

.btn.seezeit {
	background: var(--seezeit-color);
}

.btn.agora {
	background: var(--agora-color);
}

@media (max-width: 991px) {
	.headline {
		font-size: 3.5rem;
		padding-bottom: 60px;
		line-height: 60px;
	}
	.main-content {
		flex-direction: column;
	}
	.hotel-container {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 767px) {
	.headline {
		font-size: 1.8rem;
		padding-bottom: 60px;
		line-height: 60px;
	}
	.teaser-text {
		display: none;
	}
}
