/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0; 
}
.txt-center {
  text-align: center;
}
.inp {
  width: 85%;
  padding: 20px;
  margin: 10px 8%;
  border-radius: 10px;
  outline: none;
  border: 2px solid #f2c3c3;
}

.dis {
  margin: 10px;
  padding: 5px;
}
.recipe {
  margin: 30px;
  color: #ec8e8e;
  font-size: 30px;
}
img {
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin:20px 0 40px ;
  border-radius: 50%;
}
.header {
  color: #6e4242;
  margin-bottom: 20px;
}
.info {
  display: flex;
  /* justify-content: space-evenly; */
  flex-direction: column;
  margin-top: 30px;

}
.desc {
  margin:15px 0 40px;
  color: gray;
}
.container {
  display: flex;
  gap: 20px;
  margin-left: 5px;
  border-bottom: 3px solid #f2c3c3;
  /* margin-bottom: 30px; */
  /* margin-left: 50px; */
  margin: 0 50px;
}
.icon {
  text-decoration: none;
  color: #6e4242;
  font-size: 24px;
}
span {
  color: black;
  font-size: 18px;
}

/* Footer Styles */
footer {
  background: black;
  padding: 15px 0;
  margin-top: auto;
  width: 100%;
  border-top: 1px solid gray;
}

.footer {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
}

.footer p {
  margin: 0;
  font-size: 15px;
  color: white;
  line-height: 1.6;
}

.footer span {
  font-weight: bold;
  color: #ec8e8e;
}

.footer i {
  color: #ec8e8e;
}

/* Media Queries */
@media (max-width: 1200px) {
  .footer {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .footer p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer p {
    font-size: 14px;
  }
  .container {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .footer p {
    font-size: 12px;
  }
  .inp {
    width: 90%;
  }
  img {
    width: 200px; 
    height: 150px;
  }
}