/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

/* Estilos Globais */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #2c2b3d;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
}

.item-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 150px;
    background-color: #5ddabd;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-radius: 30px 0 0 0;
}


.h1-filosofos,
.h1-presocraticos {
    font-size: 16px;
    text-align: center;
}

#h2-presocraticos {
    padding: 10px;
    color: #08c89c;
}

a {
    color: inherit;
    text-decoration: none;
}

.titulo-antiga {
    text-align: center;
    color: #5ddabd;
    padding: 20px;
    font-size: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 25px;     
}

.item-container a {
    color: #000;
    /* Combine multiple transition properties */
}

.item-container a:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 312px;
    height: 152px;
    background-color: #006400;
    color: #faeaea;
    border-radius: 30px 0 0 0;
    letter-spacing: .5px;
    padding: 5px;
}

.container-presocratico {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f7f7f6;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: justify;
    margin-top: 10px;
    margin-bottom: 10px;
    text-indent: 20px;
    padding-top: 15px;
}

.presocratico {
    text-align: center;
    padding: 10px;
    font-size: 30px;
}


#presocratico {
    font-size: 16px;
    padding-bottom: 10px;
    line-height: 25px;
}

#ref {
    font-size: .8em;
    line-height: 1.3em;
    padding-top: .7em;
}

#yellow {
    background-color: #e8fc04;
    font-size: 1em;
}

.back-button {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.back-button a {
    display: inline-block;
    padding: 10px 40px;
    background-color: #5ddabd;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.back-button a:hover {
    background-color: #4ca2a0;
}

@media (max-width: 922px) {
    .container-presocratico {
        margin-top: 0;
    }

    .presocratico {
        font-size: 20px;
    }

    #h2-presocratico {
        font-size: 18px;
    }

    .item-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 3em;
        background-color: #5ddabd;
        gap: 5px;
        margin-top: 3px;
        margin-bottom: 3px;
        text-transform: uppercase;
        border-radius: 10%;
    }
    
    .item-container a:hover {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 4em;
        background-color: #006400;
        color: #fff;
        border-radius: 10%;
    }

    .container {
        margin-bottom: 15px;
    }   
    
}