  /* canvas ******************  ******************  ****************** */
.canvas{
    background-color: green;
    width: 100vw;
    position: relative;
}

img{
    width: 100%;
    height: 100%;
}

.innerImage{
    width: 10%;
    height: calc(width);
    margin: 2%;
}

.animalContainer{
    display: flex;
    width: 100%;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.commentText{
    position: absolute;
    font-size: 1.8rem !important;
    padding: 0.5rem 1rem;
    
    top: 10%;
    left: 10%;
}

.comment{
    position: relative;

}

.commentContainer{
    display: flex;
    width: 82%;
    height: 20%;
    justify-content: center;
    position: absolute;
    left: 16%;
    top: 50%;
}

.profile{
    display: flex;
    align-items: center;
    border-radius: 50px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    height: 20%;
    left: 10%;
    top: 60px;
    background-color: rgba(255,255,255,0.5);
    position: absolute;
}

.profileimage{
    height: 80%;
    width: fit-content;
    background-color: white;
    border-radius: 50px;
}
.userInfo{
    margin: 5px;
    display: flex;
    width: 200px;
    height: 80%;
    background-color: white;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

