@keyframes heartbeat{
    from{
        transform: scale(1) rotate(0);
    }
    to{
        transform: scale(1.1) rotate(-1.3deg);
    }
}

html, body{
    height: 95vh;
}

body{
    background: #16232b;
    margin: 0;
    padding: 0;
    color: #24c8db;
    font-family: riffic;
    font-size: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

*{
    line-height: 100%;
}

h1{
    display: none;
}

p{
    margin: auto;
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 200px;
    animation: heartbeat 2s ease-in-out infinite alternate;
}



p > span:first-child,
p > span:last-child{
    font-size: 400px;
    position: absolute;
}

p > span:first-child{
    top: 0;
    left: 0;
    transform: translateY(-40%) rotate(-8deg);
}

p > span:last-child{
    bottom: 0;
    right: 0;
    transform: translateX(-20px) rotate(13deg);
}

p > span:nth-child(2){
    display: grid;
    gap: 20px;
    grid-template-areas: "por no" "que no";
    grid-template-columns: min-content auto;
    grid-template-rows: min-content min-content;
}

p > span:nth-child(2) > span:nth-child(1){
    grid-area: por;
}
p > span:nth-child(2) > span:nth-child(2){
    grid-area: que;
    margin-top: -140px;
    margin-left: 20px;
}

.orange{
    color: #ffc131;
    text-transform: uppercase;
    font-size: 296px;
    grid-area: no;
}

.highlight{
    background: #ffc131;
    color: black;
    width: fit-content;
    padding: 0 40px;
    transform: translateX(50px);
    font-size: 84px;
    margin-top: -30px;
    letter-spacing: 4px;
}

.logo{
    background: url(tauri.svg) center/contain no-repeat;
    width: 900px;
    height: 280px;
    font-size: 0;
    margin-top: -70px;
    transform: translateX(-230px );
}