body {
    font-family: "Jomhuria", serif;
    font-weight: 800;
    font-style: normal;
    color: #333;
    margin: 0;
    padding: 0;
    /*line-height: 1.6;*/
    padding-bottom: env(safe-area-inset-bottom);
}

#hero {
    background: url('valentines-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 64px 64px;
    min-height: 100vh;
    background-color: #FF7A7D;
    
 	display: flex;
	flex-direction: column;
	align-items: center;
	gap: auto;
	
}
#about {
    background-color: #000;
    color: #FFF;
}
#about, #featured, #testimonials {
    text-align: center;
    min-height: 100vh;
    padding: 16px;
    
}
#featured {
    background: url("job297-ploy-17c-pink-01.jpg");
    background-size: auto;
    background-size: cover;
}
video {
    width: calc(100% - 0px);
    /*border: 16px solid #EDCC98;*/
    border-radius: 8px;
}
h1, h2 {
    font-size: 96px;
    flex-grow: 1;
    /*font-family: 'Playfair Display', serif;*/
}
h3 {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    margin-top: 35%;
}
p {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    
}
#footer-text {
    bottom: -140px;
	position: absolute;
	width: calc(100% - 32px);
	color: white;
	/* border: solid blue 1px; */
	background: #000A;
	left: 0px;
	padding: 16px;
}
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.product {
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}

.product img {
    max-width: 100%;
    height: auto;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

form button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

@keyframes heart-anim {
	0% {
		animation-timing-function: ease-out;
		transform: scale(1);
		transform-origin: center center;
	}

	10% {
		animation-timing-function: ease-in;
		transform: scale(0.91);
	}

	17% {
		animation-timing-function: ease-out;
		transform: scale(0.98);
	}

	33% {
		animation-timing-function: ease-in;
		transform: scale(0.87);
	}

	45% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 200px;
    margin: 50px auto;
}

input[type="text"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #5c5c5c;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #333;
}