@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&family=Ubuntu:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;500&family=Rubik:wght@400;700&family=Ubuntu:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.main-body {
  background-image: linear-gradient(
      to bottom,
      rgba(245, 246, 252, 0.52),
      rgba(117, 19, 93, 0.73)
    ),
    url(assest/pexels-karolina-grabowska-5718019.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.container-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.overhead {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.container-info {
  opacity: 0;
}

.input-shift {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem;
  padding-bottom: 2rem;
}

.input-thing {
  padding: 1rem;
  border-radius: 30px;
  width: 30rem;
  border: none;
  box-shadow: 0 10px 10px -6px rgba(117, 19, 93, 0.73);
}

input[type='text'],
textarea {
  border: none;
  outline: none;
  border-bottom: 1px solid #ccc;
  font-size: 1.1rem;
}

input::placeholder {
  color: grey;
  font-size: 1.1rem;
}

.food-details {
  background-color: white;
  text-align: center;
  font-size: 1.3rem;
  /* border-top-left-radius: 20px; */
  border-radius: 25px;

  width: 50rem;
  height: 51vh;
  font-family: 'Prompt', sans-serif;
  /* opacity: 0; */
}

.span-across {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  text-align: left;

  /* display: none; */
}

.div-row-one {
  height: 22rem;
  color: red;
  width: 50%;
}

.div-row-two {
  background-image: linear-gradient(
    to bottom,
    rgb(108, 97, 69),
    rgba(56, 52, 40, 255)
  );
  width: 25rem;
  font-family: 'Prompt', sans-serif;
  height: 22rem;
  overflow-y: scroll;
  color: white;
}
