<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

body{
    background-color:#0F0F0F;
    width:100vw;
    height:100vh;
    padding:0;
    margin:0;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:40px;
}
.logo{
    width:60vw;
    max-width:1000px;
}
.cartel{
    color:#0F0F0F;
    font-family:'Inter';
    font-size:16px;
    font-weight: 800;
    padding:8px 65px;
    background-color:white;
}
@media screen and (max-width:768px){
    .logo{
        width:80vw;
    }
}</pre></body></html>