body {
	font-family: Arial, sans-serif;
	margin: 0;
	position: relative;
	height: 100vh;
}

.hero {
	height: 100vh;
	background-image: center center no-repeat;
	background-size: cover;
	display: flex;
	font-family: 'Titillium Web', sans-serif;
	align-items: center;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	flex-direction: column;
	justify-content: center;
}

.buttons-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.btn-custom {
	background-color: transparent;
	color: white; /* Changed from black to white */
	border: 1px solid white; /* Changed from black to white */
	text-shadow: none;
	font-size: 1.5rem;
	transition: background-color 0.3s ease, color 0.3s ease; /* Added color to the transition */
}

.btn-custom:hover {
	background-color: white;
	color: black; /* Added this line to change the text color on hover */
	border: 2px solid black; /* Added this line to change the border color on hover */
}

.hero h1 {
	font-size: 3rem;
}

/* Instagram icon styling */
.instagram-link {
	text-decoration: none;
}

.instagram-link img {
	width: 50px;
	height: 50px;
}

.follow-text {
	margin-right: 10px;
	font-size: 2rem;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}

	.follow-text {
		font-size: 1rem;
	}

	.instagram-link img {
		width: 60px;
		height: 60px;
	}

	.buttons-container {
		justify-content: center;
		gap: 5px;
	}

	.instagram-link {
		position: static;
		margin-top: 20px;
		justify-content: center;
		transform: none;
	}

	#main-button {
		display: block;
		margin-bottom: 20px;
	}
}

.image-description {
	position: absolute;
	top: 20px;
	right: 20px;
	font-family: 'Italianno', sans-serif;
	font-size: 2rem;
	text-align: right;
}

.text-background {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 20px 30px;
	border-radius: 10px;
}