:root {
  --white: #ffffff;
  --black: #212121;
  --primary: #FFC107;
  --secondary: #0097A7;
  --gray: #757575;
  --gray-light: #DFE9F3;
}

/* Globals */

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  font-family: sans-serif;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-container {
  text-align: center;
  justify-content: center;
  align-items: center;
 
}

header {
  background-color: rgb(130, 24, 136);
}

.image {
  display: flex;
  justify-content: center;
}

image {
  object-fit: cover;
}

.title {
  text-align: center;
  font-size: 3.6rem;
  color: white;
  margin: 0;
  padding: 1.2rem;
}

.button-link {
  text-decoration: none; /* Quitar subrayado de enlace */
  color: inherit; /* Heredar el color del texto del botón */
}

button {
  background-color: rgb(139, 58, 143);
  color: var(--white);
  padding: 1rem 3rem;
  margin-top: 3rem;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: .5rem;
  border: none;
  margin: 10px;
  
}

button:hover {
  
  background-color: rgb(130, 24, 136);
}

footer {
  text-align: center;
}