
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}

:root {
    font-size: 18px;
}


@font-face {
    font-family: 'AlibabaBold';
    src: url('../assets/AlibabaPuHuiTiExtraBold-subset.woff2') format('woff2'),
    url('../assets/AlibabaPuHuiTiExtraBold-subset.ttf') format('truetype');
}

@font-face {
    font-family: 'AlibabaRegular';
    src: url('../assets/AlibabaPuHuiTiRegular-subset.woff2') format('woff2'),
    url('../assets/AlibabaPuHuiTiRegular-subset.ttf') format('truetype');
}

body {
    font-family: AlibabaRegular, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #0a0615;
    color: #afafaf;
}

h1 {
    font-family: AlibabaBold, sans-serif;
    font-size: 5rem;
    line-height: 1.3;
    margin-bottom: 0;
    color: white;
}

h2 {
    font-size: 1.1rem;
    line-height: 1.8;
}

h1, h2 {
    font-weight: normal;
}

a {
    color: #97abda;
}

main {
    position: relative;
    flex: 1;
    display: flex;
}

#page-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 3rem 8rem 0 8rem;
    z-index: 1;
}

#p5-sketch {
    background: #888888;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.page-content-text {
    max-width: 60vw;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-bottom: 3rem;
}

.page-content-footer-intro p {
    font-size: .7rem;
    margin: 0;
    font-style: italic;
    color: #676767;
}

footer {
    padding-bottom:.6rem;
    font-size: .8rem;
}

.footer-data {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: .6rem 8rem;
    border-top: #555555 1px solid;
}

.footer-data > div{
    display: flex;
    align-items: center;
}

footer img{
    width: 15px;
    height: auto;
    margin-right: .5rem;
}

#prueba-font {
    font-family: 'Alibaba', serif;
    font-size: 5rem;
    font-weight: bold;
}

.link-button{
    padding: 1rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    background-color: rgba(60, 61, 67, 0.82);
    color: #afafaf;
    border: 1px solid #5a5a61;
}