#parrot-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f4f8;
}

#parrot-image{
    width: 200px;
    height: auto;
    transition: transform 0.2s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2s);
}

#parrot-image:hover{
    transform: scale(1.05);
}

#quote-text{
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 18px;
    text-align: center;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}