* {
    scroll-behavior: smooth;
    font-family: sans-serif;
}
::selection {
    color: #ffffff;
    background: #e6308b;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.head-div {
    /* background-color: red; */
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-items {
    font-size: 30px;
    font-weight: bold;
    margin: 10px;
    
}
.nav-items a {
    text-decoration: none;
    color: #e6308b;
}
.nav-items a:hover {
    text-decoration: underline;
}
.logo-and-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-direction: column;
    margin-top: 3rem;
}
.logo img{
    width: 400px;
    height: auto;
}
.tagline {
    font-size: 20px;
    font-style: italic;
    color: #e6308b;
}
.greetings {
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 8rem;
}
.greetings img {
    width: 45vh;
    height: auto;
}
.text-greetings {
    /* background-color: blue; */
    width: 30%;
    font-size: 20px;
    margin-left: 3rem;
    font-family:'Times New Roman', Times, serif;
    color: #e6308b;
}
.about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 11rem;
}
.about-us h1 {
    color: #e6308b;
}
.about-us span {
    font-size: 20px;
    width: 75%;
    font-family:'Times New Roman', Times, serif;
    color: #e6308b;
}
.products-head {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6308b;
    margin-top: 10rem;
}
.item {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #e6308b;
}
.item:hover {
    animation: bounce .8s;
}

.products-items {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    margin-top: 2rem;
}
.menu {
    width: 500px;height: 650px;
}
.items-sold-and-baked-img-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.download-menu {
    font-size: 20px;
    color: #e6308b;
    margin-top: 3rem;
    text-decoration: none;
}
.contact-text {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.contact-text span {
    width: 70%;
    color: #e6308b;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6308b;
    flex-direction: column;
    margin-top: 20rem;
}
.footer span {
    font-size: 18px;
    width: 50%;
    text-align: center;
}
.copyright {
    background-color: #e6308b;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 5rem; */
    height: 7vh;
}
.footer-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.footer-images-div {
    /* background-color: green; */
    display: flex;
    width: 40%;
    justify-content: space-around;
    
}
.feedback {
    margin-top: 7rem;
    /* background-color: red; */
    width: 89%;
    text-align: right;
}
.feedback a {
    font-style: italic;
    color: #e6308b;
}
.social-media-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 7rem; */
    margin-bottom: 1rem;
    width: 100%;
}
.fab, .far {
    font-size: 25px;
    color: #e6308b;
}
.logo-img:hover {
    animation: shake 0.5s;
}
.why-us-tags-div {
    /* background-color: #e6308b; */
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    color: #e6308b;
}
.tag-one-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tag-one-div img {
    width: 30vw;
    height: auto;
}
.tag-two-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tag-two-div img {
    width: 30vw;
    height: auto;
}
.second-tag-div {
    display: flex;
    align-items: center;
    justify-content: baseline;
    flex-direction: row;
    justify-content: space-around;
    color: #e6308b;
}
.second-tag-first-inner-div {
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.second-tag-first-inner-div img {
    width: 16vw;
    border-radius: 50%;
}
.second-tag-second-inner-div {
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.second-tag-second-inner-div img {
    /* width: 30vw;
    height: auto; */
    width: 25vw;
    border-radius: 50%;
}
.location-main-div {
    margin-top: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform:     translateY(-30px);
		transform:         translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform:     translateY(-15px);
		transform:         translateY(-15px)
	}
}

/* Scroll bar */

/* width */
::-webkit-scrollbar {
    width: 13px;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: pink;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #e6308b;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: grey;
}
