:root {
    --primary: #2563eb;
    --hover: #1d4ed8;
}
/* root
*/
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
/* body
*/
.container {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 90%;
    width: 700px;
}
/* container
*/
h1 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
/* h1
*/
p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* p
*/
.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon {
    width: 1.2em;
    height: 1.2em;
}

.btn-primary {
    background: var(--primary);
    color: rgb(212, 202, 202);
}

.btn-primary:hover {
    background: var(--hover);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}
.icono {
    width: 100px; 
    margin-bottom: 1%; 
}