*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Glacial Indifference";
    src: url("../../../ASSETS/FONTS/GlacialIndifference/GlacialIndifference-Regular.otf");
}

@font-face {
    font-family: "Brittany";
    src: url("../../../ASSETS/FONTS/Brittany/BrittanySignature.ttf");
}
.titleAuthors{
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-family: "Glacial Indifference";
    color: #000000b2;
}

.boxListAuthors{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 3rem;
}

.letter{
    position: sticky;
    top: 7rem;
    display: inline-flex;
    width: 50px;
    height: 50px;
    font-family: "Glacial Indifference";
    text-transform: uppercase;
    background-color: #f0005c;
    color: #ffffff;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.boxAuthors{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    justify-content: left;
    align-items: center;
    padding: 4rem;
    gap: 5rem;
}

.author{
    display: inline-flex;
    flex-direction: column;
    width: 150px;
    align-items: center;
    min-height: 200px;
    padding: 2rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 15px;
    transition-duration: .3s;
}

.author:hover{
    transform: scale(1.1);
}

.boxAvatarAuthor{
    background-color: rgb(255, 255, 255);
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.avatarAuthor{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxNameAuthor{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.nameAuthor{
    display: flex;
    flex-wrap: wrap;
    font-family: "Glacial Indifference";
    font-size: 15px;
    color: #000000;
    text-align: center;
}

@media (max-width: 540px) {

    .titleAuthors{
        font-size: 25px;
        text-align: center;
    }

    .boxListAuthors{
        padding: 1rem;
    }

    .letter{

    }
    .boxAuthors{
        justify-content: center;
    }
}
