* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}
html {
  font-size: 62.5%;
}
header {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  z-index: 100;
}

.drop {
  position: relative;
}

.drop-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.781);
  padding: 2rem;
  width: auto;
  align-items: flex-start;
  font-size: 1.5rem;
  white-space: nowrap;
  top: 2.5rem;
  left: 0rem;
  display: none;
}

.drop-menu a:link,
.drop-menu a:visited {
  text-decoration: none;
  color: #222;
}
.drop-menu a:hover,
.drop-menu a:active {
  text-decoration: none;
  color: #a81420;
}

.drop:hover .drop-menu {
  display: flex;
}

.hero-section {
  display: flex;
  flex-direction: column;
}

.nav-bar {
  padding: 2rem 4rem;
  width: 90rem;
  justify-self: center;
}
.nav-bar ul {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  justify-content: flex-end;
  list-style: none;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.nav-bar a {
  text-decoration: none;
  color: #fff;
}
.nav-bar a:hover,
.nav-bar a:active {
  color: #a81420;
}
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.459);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url("../img/egusiiiiiiiii.jpg") no-repeat center center/cover;
  /* background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10rem auto;
  /* justify-self: center; */
}

.hero-message {
  font-size: 8rem;
  font-weight: 700;
  color: #fff;
  font-family: "Dancing Script", cursive;
}
.emphazised-message {
  font-size: 13rem;
}
.message {
  font-size: 2rem;
  color: #a81420;
  font-weight: 600;
}

.recipies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  width: 120rem;
  margin: 2rem auto;
}

.container {
  background-color: #ebe7db;
  height: 35rem;
  width: 25rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.container-image img {
  width: 100%;
  /* padding-top: 1rem; */
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 6rem;
}

.delivered-imgs {
  display: flex;

  margin-left: 2rem;
}

.delivered-imgs img {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: red;
  font-weight: 700;
}
