/* @tailwind base;
@tailwind components;
@tailwind utilities;
 */
/* General */
:root {
  --blue-color: #baebf4;
  --pink-color: #dda1ca;
  --text-color: #363636;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    font-size: 1em;
    color: var(--text-color);
}

main {
  border-top: 2px solid #000;
}

footer {
  background-color: var(--blue-color);
  padding-top: 50px;
}

.button-color {
  background-color: var(--pink-color);
  color: white;
}

.button-color:hover {
 color: var(--text-color);
}

.button-pink-color {
  background-color: var(--pink-color) !important;
}

.text-link {
  font-weight: normal;
  text-decoration: none;
  color: var(--pink-color);
}

.text-link:hover {
  text-decoration: underline;
}

.preparacion ul li,
.ingredientes ul li {
  list-style-type: disc;
  list-style-position: inside;
}

.active,
.pink-color:hover,
.forget a,
.preparacion a,
.ingredientes a {
    color: var(--pink-color);
}

.preparacion a:hover,
.ingredientes a:hover {
    text-decoration: underline;
}

button {
  outline: none;
}