html {
  font-family: "Quicksand", sans-serif;
}
body {
  padding: 0;
  margin: 0;
  background-color: rgb(73, 70, 70);
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 4.5em;
  width: 100vw;
  padding: 0.2em;
  background-color: rgb(43, 41, 41);
}

.header_title {
  display: flex;
  margin: 0;
  color: white;
}
.author {
  display: flex;
  color: white;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5em;
  width: 100vw;
  background-color: black;
  color: white;
  padding: 0.5em;
}
.footer_container {
  width: 5em;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.github {
  color: white;
  transition: color 0.4s;
}
.github:hover {
  color: rgb(218, 94, 77);
}
.linkedin {
  color: white;
  transition: color 0.4s;
}
.linkedin:hover {
  color: rgb(218, 94, 77);
}
.mail {
  color: white;
  transition: color 0.4s;
}
.mail:hover {
  color: rgb(218, 94, 77);
}
.main_container {
  padding: 1em;
  width: 100vh;
  min-height: 50em;
}

.add_container {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 3em;
  width: 80vw;
  height: 18em;
}

.cards_content {
  width: 100vw;
  min-height: 15em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0.5em;
  gap: 2em;
}

.form_container {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 4px;
  margin: 1em;
  width: 40em;
  height: 15em;
  gap: 4px;
  border-radius: 5px;
  background-color: rgb(43, 41, 41);
}
.formulario {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: start;
  gap: 0.5em;
  margin-left: 2em;
}

.form_h1 {
  margin: 0;
  color: white;
}

.form_title {
  border-radius: 5px;
}

.info {
  width: 20em;
  height: 5em;
  border-radius: 10px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: rgb(85, 83, 83);
  width: 12em;
  height: 14em;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s;
}
.card:hover {
  transform: scale(1.05);
}

.card_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 2em;
  background-color: rgb(218, 94, 77);
}
.card_bot {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 0.3em;
}

.card_content {
  width: 100%;
}
.card_date {
  font-size: x-small;
}
.card_top2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em;
  gap: 5px;
}

.btn_editar {
  padding: 0.2em;
  border-radius: 50%;
  color: green;
  transition: background-color 0.4s;
}
.btn_editar:hover {
  background-color: rgb(70, 223, 70);
}
.btn_eliminar {
  padding: 0.2em;
  border-radius: 50%;
  color: red;
  transition: background-color 0.4s;
}
.btn_eliminar:hover {
  background-color: rgb(231, 92, 92);
}
