/*------------Fonts-------------*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');

body {
	font-family: 'Nunito', sans-serif;
}

/* button styles */
#button-addon2 {
	background-color: #242b2e;
	color: #ff6666;
	transition: all 0.4s;
}
#button-addon2:hover {
	background-color: #ff6666;
	color: #242b2e;
}

.detail-button {
	border: none;
	width: 100%;
	background-color: #e6425e;
	color: white;
	border-radius: 10px;
	transition: all 0.4s;
}
.detail-button:hover {
	background-color: #b9345a;
}

/* card styles */
.card {
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	padding: 5px !important;
}
.card-title {
	font-size: 18px !important;
}
.card-text {
	font-size: 12px !important;
	color: #242b2e !important;
}
.card img {
	width: 70% !important;
}
.card-body {
	width: 100%;
}

/* details styles */
.detail-body-left,
.detail-body-right {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
}
.detail-body-right {
	margin-top: 5%;
	margin-bottom: 5%;
	width: 100%;
}
.details-p {
	font-size: 12px;
}
.details-h4 {
	font-size: 16px;
}

#result-found {
	height: 50px;
}
#details {
	display: flex;
}

@media only screen and (max-width: 800px) {
	#details {
		flex-direction: column;
		align-items: center;
	}
}
