.article{
    width: 800px;
    margin: 0 auto;
    height: 200vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: medium;
    padding: 0;
    margin: 0;

}

.birds_info_container{
    display: flex;
    text-align: center;
    vertical-align: center;
    justify-content: space-between;
    height: 500px;
}

.birds_info{
    width: 33%;
    display: inline-block;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.birds_info h1{
    display: block;
    width: 100%;
    font-size:15px;
    margin: 0;
    text-align: left;
}

.title{
    font-size: 50px;
    margin: 0;
    text-align: center;
}

@media (max-width: 440px) {
    .birds_info_container{
        flex-direction: column;
        height: 100%;
    }

    .birds_info{
        height: 400px;
        width: 100vw;
    }
}
