/* Estilos generales */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
body  {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
    font-family: "Jost", sans-serif;
}
main  {
    text-align: center;
    max-width: 320px;
    width: 100%;
}
/* Logo */
main img  {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}
/* Contenedor de enlaces estilo Linktree */
main div  {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

main a  {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: #fff;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: inherit;
}
main i{
    padding-right: 0.5rem;
}
main a svg  {
    margin-right: 1rem;
}
main p  {
    font-size: 1rem;
}
main p a  {
    color: #0073e6;
    text-decoration: none;
}