@font-face {
    font-family: Fjalla;
    src: url(../fonts/FjallaOne-Regular.ttf);
}

.content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-tile {
    flex: 1;
    border-radius: 1.5rem;

    box-shadow: inset 16px 16px 32px rgba(255, 255, 255, .5),
        16px 16px 32px rgba(0, 0, 0, .25);
    background-size: 100px 100px;
    transition: all ease .68s;
    width: 100%;
}

.sub-tile {
    flex: 1;
    border-radius: 1.5rem;

    box-shadow: inset 16px 16px 32px rgba(255, 255, 255, .5),
        16px 16px 32px rgba(0, 0, 0, .25);
    background-size: 100px 100px;
    transition: all ease .68s;  
}



.content-tile:hover {
    transition: all ease 0.3s;
    box-shadow: inset 8px 8px 16px rgba(255, 255, 255, .5),
        8px 8px 16px rgba(0, 0, 0, .25);
}

.content-tile-cover {
    border-radius: 1.5rem;
    pointer-events: none;
    width: 100%;
    height: 180px;
    background: url(../svg/pattern/chaos_bg.svg),
        rgba(0, 0, 0, .05);
    background-size: 100px 100px;
    animation: 3s linear infinite background-shift-right;
}

.sub-tile {
    width: 100%;
    height: 100%;
}


#tile1-sub {
    background-image: url(../assets/index/scroll-portfolio.png);
    animation: 10s linear infinite bg-scroll1-sub;
    background-size: 300px 450px;
}

@keyframes bg-scroll1-sub {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 300px 450px;
    }
}


@keyframes bg-scroll{
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -200px 0;
    }
}

#tile2 {
    background-image: url(../svg/text/text_contact.svg);
    animation: 10s linear infinite bg-scroll;
    background-size: 100px 30px;
}


#tile3 {
    background-image: url(../svg/text/text_downloads.svg);
    animation: 10s linear infinite bg-scroll;
    background-size: 100px 30px;
}


#tile4 {
    background-image: url(../svg/text/text_about-me.svg);
    animation: 10s linear infinite bg-scroll;
    background-size: 100px 30px;
}

#tile1 {
    background-image: url(../svg/text/text_portfolio.svg);
    animation: 10s linear infinite bg-scroll;
    background-size: 100px 30px;
}

@keyframes background-shift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 60px;
    }

}

@keyframes background-shift-right {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 100px;
    }

}