.gradient-background {
    background: linear-gradient(300deg, #00bfff, #ff4c68, #ef8172);
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.icon-square {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
}

.profile-img {
    height: 100px;
    border-radius: 50%;
}

.iphone {
    margin-bottom: -96px;
}

.dog {
    margin-top: 50px;
    margin-bottom: 10px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.logo {
    margin-right: 50px;
    margin-top: 30px;

    height: 40px;
}

.gradient-background {
    display: inline-block;
    height: 100%;
    width: 100%;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .iphone {
        margin-bottom: 10px;
    }

    .logo {
        margin-left: 65px;
        height: 30px;
        margin-top: 35px;
        padding-right:30px ;
    }
}


