@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --fondo: #f5f5f5;
  --primario: #fcebff;
  --secundario: #c993ce;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}

body {
  background-color: var(--fondo);
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acciones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

section h2 {
  font-family: "Atma", cursive;
  font-size: 40px;
  font-weight: 700;
  color: black;
}

form,
.acciones {
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: black;
}

button {
  background-color: var(--secundario);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: "urbanist", sans-serif;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
}

.acciones a {
  color: var(--secundario);
  font-weight: 600;
}

input {
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  padding: 10px;
}

main {
  display: flex;
  padding-top: 150px;
  padding-left: 50px;
  padding-right: 50px;
  gap: 100px;
  align-items: center;
  flex-direction: column;
}

header {
  padding: 30px;
}

.seccion_6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  width: 100%;
  gap: 20px;
}

.seccion_6 h2 {
  font-family: "urbanist", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.apps img {
  width: 150px;
  height: 40px;
}

.footer-text,
.list-footer a {
  font-family: "urbanist", sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
  color: black;
}

.footer-text,
.list-footer {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.list-footer li a {
  text-decoration: underline;
}

footer {
  background-color: rgb(216, 216, 216);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: 200px;
  gap: 10px;
}
button:hover {
  /* font-size: 20px; */
  background-color: #e9d6ec;
  color: gray;
  font-family: "atma", sans-serif;
}
