:root{
    --pink-af: #F71A9A;
    --shadow: #B9FFFF;
}

@font-face {
    font-family: Poppins;
    src: url(Poppins-Bold.ttf);
}

body{
    display: grid;
    background-color: black;
    min-height: 100vh;
    margin: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Poppins;

    animation: in 2s ease-in-out;
    pointer-events: none;
    user-select: none;
}


@keyframes in{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

main{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    justify-content: center;
}

.text{
    font-size: 7em;
    line-height: 1;
    padding: 1em;
    /* text-shadow: 5px 5px 0 var(--shadow); */
}

.splash{
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

    .bg,
    .subject{
        position: absolute;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        width: 100%;
        height: 100%;
    }
    
    .bg{
        background-image: url(truddow_bg.jpg);
        animation: bg-zoom 10s ease-out;
    }

    .subject{
        background-image: url(truddow_subject.png);
        animation: subject-zoom 10s ease-out;
        /* filter: drop-shadow(10px 10px 0 var(--shadow)); */
    }
}

@keyframes subject-zoom {
    from{
        transform: translateX(-50px);
    }
    to{
        transform: scale(1) translateX(0);
    }
}

@keyframes bg-zoom {
    from{
        transform: scale(1.05);
    }
    to{
        transform: scale(1);
    }
    
}