body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.logo {
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

p {
    font-size: 1.2rem;
    margin: 0;
}

.download {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.download img {
    height: 45px;
    cursor: pointer;
}

.illustration {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    z-index: -1;
}

.illustration img {
    height: 300px;
}

.paws {
    position: absolute;
    right: 0;
    top: 0;
    width: 90%;
    z-index: -2;
    /* filter: blur(3px); */
    transform: rotateX(180deg);
    max-width: 1000px;
}

/* mobile */
@media (max-width: 480px) {
    .paws {
        max-width: 400px;
    }

    .illustration img {
        height: 200px;
    }
}

/* tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .paws {
        max-width: 700px;
    }

    .illustration img {
        height: 200px;
    }
}

/* desktop */
@media (min-width: 769px)and (max-width: 1024px) {
    .paws {
        max-width: 800px;
    }

    .illustration img {
        height: 250px;
    }
}

/* animate #cat to go up and down smoothly  */
#cat {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}