*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
}

body, html
{
    height: 100%;
}

main
{
    padding-top: 60px;
    height: calc(100% - 60px);
}

.expert
{
    padding-left: 5px;
    margin-bottom: 20px;
    display: flex;
}

.divs-gray
{
    background-color: darkgray;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.divs-turquiose{
    background-color: darkturquoise;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

h1, h2
{
    color: blue;
}

.button 
{
    background-color: #006E7A;
    color: #fafafa;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s; /* Add transition for smooth hover effect */
}

.button:hover 
{
    background-color: #00535C;
    color: #fafafa;
}

.experts-image
{
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 50% 25%;
}

.top-article-right
{
    height: 350px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    background-color: #B7F0FE;
}

.text-large
{
    font-size: x-large;
}

.row
{
    margin-left: 5%;
    margin-right: 5%;
}

.row-top-section
{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.expert-image img
{
    width: 100%;
    object-fit: cover; /* Maintain aspect ratio */
}

.expert-image
{
    overflow: hidden;
    height: 218px;
}