/*
logo dark green #02522e
logo orange #f8951d
*/

body {
	background-image: url("part-beach-caribbean-sea-mexico.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
button {
	background-color: red;
	color: white;
}
.title {
	background-color: black;
	color: white;
	text-align: center;
	padding: 20px;
	text-transform: uppercase;
	font-size: 60px;
}
label {
	width: 150px;
	display: block;
	float: left;
}
.peppermint {
	display: inline-block;
}
.peppermint img {
	width: 50%;
	/* Set the width of the images to 50% to make them side by side */
	float: left;
	/* Float the images to the left to make them align horizontally */
	display: block;
}
.headerphoto img {
	width: 100%;
}
.spices img {
	max-width: 100%;
	height: auto;
}
p {
	font-size: 25px;
	/* Adjust the size as needed */
	font-weight: 100;
}
.moving-paragraph {
	font-size: 100px;
	/* Adjust the size as needed */
	font-weight: 100
}
.slideshow-img {
	width: 100%;
	height: auto;
	/* Maintain aspect ratio */
}
.container {
	width: 100%;
	/* Set the container width to fill the entire viewport */
	overflow: hidden;
	/* Hide anything outside the container's boundaries */
}
.moving-paragraph {
	position: relative;
	/* Set the position to enable animation */
	animation: moveAcrossPage 5s linear infinite;
	/* Set the animation properties */
}
@keyframes moveAcrossPage {
	0% {
		left: 0;
		/* Start the animation from the left edge */
	}
	100% {
		left: calc(100% - 200px);
		/* Move the paragraph to the right edge (adjust 200px to desired distance) */
		animation-timing-function: ease-in-out;
	}
}
nav.topmenu {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-weight: bolder;
	font-size: 12px;
	font-family: 'Dhurjati', sans-serif;
}
nav.topmenu a {
	color: black;
	text-decoration: none;
	padding: 0px 0px;
	box-sizing: border-box;
	font-size: 18px;
	width: 14.285%;
	height: 80px;
	display: block;
	float: left;
	line-height: 120px;
	color: #02522e;
}
nav.topmenu a.logo {
	height: 100px;
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
section.slides{
	overflow: auto;
	width: 100%;
}
section.slides .wrap{
	overflow: auto;
	width: 100%;
	height: auto;
}
section.slides .wrap img{
	width: 100%;
}
/* Style the button */
.paypal-button {
	display: inline-block;
	background-color: #0070ba;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}
/* Style the button on hover */
.paypal-button:hover {
	background-color: #005197;
}

/*This was done by Nicholas Pope*/
section.teas{
	overflow: auto;
	width: 100%;
	margin: 0 auto;
	font-family: 'Hedvig Letters Serif', serif;
}
section.teas>.wrap{
	overflow: auto;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}
section.teas .item{
	width: 25%;
	float: left;
	overflow: auto;
	padding: 10px;
	box-sizing: border-box;
	padding: 20px;
	box-sizing: border-box;
}
section.teas .item>.innr{
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
    overflow: auto;
	text-decoration: none;
	color: black;
	display: block;
	border: rgba(0, 128, 0, 0) solid 1px;
	border-radius: 10px;
}

section.teas .item:hover>.innr{
	border: rgb(0, 128, 0) solid 1px;
	border-radius: 10px;
}
section.teas .item img{
    width: 100%;
	display: block;
	margin: 0 auto;
}
section.teas .item .image{
	width: 100%;
	height: 250px;
	background-image: url(https://ichef.bbci.co.uk/news/976/cpsprodpb/12849/production/_108994857_teabag-index-getty2.jpg.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
section.teas .item .name{
	font-size: 20px;
	font-weight: bold;
}
section.teas .item .desc{}
section.teas .item .price{
	font-size: 20px;
	font-weight: bold;
}
