﻿.author-grid {
    display: flex;
    flex-direction: column;

    gap: 80px;

    align-items: center;
    justify-content: center;
}


.author-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    margin-top: 40px;

    width: 50%;

}

.text-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-column h1{
    font-size: 4vh;
    color: var(--dark-blue);
}

.text-column p{
    color: var(--dark-blue);
}

.text-column a{
    color: var(--dark-blue);
    font-weight: bold;
}

.text-column hr{
    color: var(--dark-blue);

    border-style: solid;
    border-color: var(--dark-blue);
}


.author-container img{
    display: inline-block;
    object-fit: cover;

    width: 25vh;
    height: 25vh;
    margin-left: 24px;

    border-radius: 50%;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.45);
}
