body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.btn {
    text-decoration: none;
    color: #333;
    background-color: #ffffff;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    min-height: 200px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 10px;
}

.btn-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

@media (min-width: 600px) {
    .buttons-container {
        flex-direction: row;
        justify-content: center;
    }
}

.back-link-container {
  width: 100%;
  text-align: left;
  padding: 10px 0;
}

.back-link {
  color: #5d3fd3; /* El color de tu marca */
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #4b0082; /* El color de tu marca al pasar el mouse */
}
