/*info_page.php only*/
.textClass{
    color: var(--book-title-author-color);
    font-size: large;
    display: block;
    margin: auto;
    margin-top: 30px;
    width: 60%;
    text-align: justify;
}
.textClass p{
    padding-bottom: 25px;
}
.textClass h3{
    text-align: center;
    font-size: 24px;
    padding-bottom: 25px;
}

.logodiv{
    margin-top: 20px;
    text-align: center;
}
.infologo{
    width: 500px;
}

.creators{
    color: var(--book-title-author-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    padding: 0 20px;
}

.info-social{
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;  
}
.info-social i{
    font-size: 20px; 
}
.info-social a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    color: var(--book-title-author-color); 
}
.info-social p{
    position: relative;
}
.info-social p:before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--author-hover-underline-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.info-social p:hover::before{
    transform: scaleX(1);
}


/* telefon only */
@media only screen and (max-width: 425px){ /*legkisebb*/

    .textClass{
        margin-top: 20px;
        width: 85%;
    }
    .textClass h3{
        font-size: 18px;
    }

    .infologo{
        width: 225px;
    }

    .creators{
        margin-top: 16px;
        margin-bottom: 10px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 426px) and (max-width: 650px){ /*kisebb*/

    .textClass{
        margin-top: 30px;
        width: 80%;
    }
    .textClass h3{
        font-size: 20px;
    }

    .infologo{
        width: 300px;
    }

    .creators{
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 16px;
    }
} 

@media only screen and (min-width: 651px) and (max-width: 992px){ /*medium*/

    .textClass{
        margin-top: 50px;
        width: 70%;
    }
    .textClass h3{
        font-size: 22px;
    }

    .infologo{
        width: 400px;
    }

    .creators{
        margin-top: 28px;
        margin-bottom: 14px;
        font-size: 20px;
    }
} 