.authorsContanier{
    display: flex;
    justify-content: space-evenly;
    margin-top: 10vh;
}

.authorsContanier div:not(.responsibleFor){
    width: 25vw;
    font-size: 200%;
    border-radius: 15px;
    padding: 2%;
}

.authorsContanier h3{
    text-align: center;
    margin: 5% 0;
}

.authorsContanier li, .authorsContanier ul, .authorsContanier h4 {width: fit-content;}


.linkContanier{
    display: flex;
    justify-content: space-around;
}

.linkContanier a.light-text{
    color: black !important;
    transition: transform 0.3s ease-in-out;
}

.linkContanier a.dark-text{
    color: white !important;
    transition: transform 0.3s ease-in-out;
}

.linkContanier a:hover {
    transform: scale(1.2);
}

.responsibleFor{
    width: fit-content;
    margin-left: 10%;
    font-size: 80%;
}

.author{
    height: fit-content;
}

.author:hover{
    cursor: pointer;
}

@media screen and (width <= 768px) {
    .authorsContanier{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .authorsContanier div:not(.responsibleFor){
        margin: 0 auto;
        margin-bottom: 5%;
        width: 80%;
    }
}