*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .app{ 
        position: relative;
        height: 100svh;
        background: #050505;
        overflow: hidden;
        font-family: "Montserrat", sans-serif;
        color: #fff;
        font-size: 18px;
    }
    .img{
        position: absolute;
        bottom: 0;
        width: 100vw;
        margin: 0 auto;
        animation: catAnim 1.5s ease forwards;
    }
    .img img{
        display: flex;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    @keyframes catAnim {
        0%{
            translate: 0 50%;
        }
        100%{
            translate: 0 0;
        }
    }
    .okak{
        position: absolute;
        bottom: 150px;
        left: 50%;
        translate: -50% 0;
        font-weight: 900;
        font-size: 115px; 
    }
    .error{
        position: absolute;
        top: 50%; 
        left: 50%;
        font-size: 750px;
        font-weight: 900;
        transform: translate(-50%, 800px);
        animation: errorAnim 1.5s ease forwards;
    }


    @keyframes errorAnim {
        100% {
            transform: translate(-50%, -400px);
        }
    }

@media (max-width: 1200px) {
    .error {
        font-size: 400px;
        transform: translate(-50%, 400px);
    }
    @keyframes errorAnim {
        100% {
            transform: translate(-50%, -200px);
        }
    }
    .okak {
        font-size: 70px;
        bottom: 100px;
    }
}

@media (max-width: 768px) {
    .error {
        font-size: 180px;
        transform: translate(-50%, 200px);
    }
    @keyframes errorAnim {
        100% {
            transform: translate(-50%, -100px);
        }
    }
    .okak {
        font-size: 40px;
        bottom: 60px;
    }
    .img img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .error {
        font-size: 80px;
        transform: translate(-50%, 100px);
    }
    @keyframes errorAnim {
        100% {
            transform: translate(-50%, -40px);
        }
    }
    .okak {
        font-size: 22px;
        bottom: 30px;
    }
    .img img {
        max-height: 100px;
    }
}
