#authors {
    padding: 2px;
    width: 100%;
    background-color: rgb(255, 210, 48);
    position: relative;
    z-index: 1;
    border-bottom: 4px solid black;
}

#authors .auth-bg-sq-1 {
    width: 128px;
    height: 128px;
    background-color: rgba(0, 0, 0, 0.1);
    top: 30px;
    right: 100px;
    z-index: -1;
    transform: rotate(45deg);
}

#authors .auth-bg-sq-2 {
    width: 120px;
    height: 120px;
    bottom: 45px;
    left: 34px;
    background-color: rgba(255, 0, 0, 0.1);
    z-index: -1;
    transform: rotate(79deg);
}

.title {
    padding: 2px;
    margin: 50px auto 40px auto;
    text-align: center;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 8px;
    background-color: black;
    top: 110%;
    left: 50%;
    transform: rotate(1deg) translateX(-50%);
}

.title h3 {
    font-size: 48px;
    font-weight: 900;
}

.title p {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.621);
}

#authors .auth-contain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

#authors .auth-contain .auth {
    margin: 30px 0;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 4px solid black;
    box-shadow: 4px 4px black;
    position: relative;
    transition: all 0.2s;
}

#authors .auth-contain .auth:hover {
    transform: translate(-2px, -2px);
}

#authors .auth-contain .auth .tag {
    position: absolute;
    top: 20px;
    right: 20px;
}

#authors .auth .auth-img {
    width: 40%;
    border: 4px solid black;
    margin: 10px;
}

#authors .auth h4 {
    font-size: 32px;
    font-weight: 900;
}

#authors .auth .auth-exp {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.621);
}

#authors .auth .auth-content {
    margin: 20px 0;
}

#authors .auth .auth-social ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#authors .auth .auth-social ul li {
    margin: 5px 10px 10px 10px;
    background-color: black;
    border: 2px solid black;
    transition: all 0.2s;
}

#authors .auth .auth-social ul li a {
    padding: 8px 10px;
    color: white;
    font-size: 18px;
}

/*  social hover */
#authors .auth .auth-social ul .twitter:hover {
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px black;
    background-color: rgb(29, 161, 242);
}

#authors .auth .auth-social ul .linkedin:hover {
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px black;
    background-color: rgb(21, 93, 252);
}

#authors .auth .auth-social ul .instagram:hover {
    transform: translate(-6px, -6px);
    box-shadow: 6px 6px black;
    background-color: rgb(230, 0, 118);
}

/* auth hover */
#authors .auth-contain .auth-1 {
    background-color: rgb(254, 249, 194);
}

#authors .auth-contain .auth-1:hover h4 {
    color: #FB2C36;
}

#authors .auth-contain .auth-2 {
    background-color: rgb(219, 252, 231);
}

#authors .auth-contain .auth-2:hover h4 {
    color: #2B7FFF;
}

#authors .auth-contain .auth-3 {
    background-color: rgb(252, 231, 243);
}

#authors .auth-contain .auth-3:hover h4 {
    color: #AD46FF;
}

@media screen and (min-width: 200px) {
    .title h3 {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 10px;
    }
    .title p {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .title h3 {
        font-size: 48px;
    }

    .title p {
        font-size: 20px;
    }
}