body {
    font-family: "Playfair Display", Impact, Haettenschweiler, "Arial Narrow Bold",
        sans-serif;
}

.emotion-list-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100vw;
    height: 100vh;

}

.emotion-list-container a {
    font-size: clamp(18px, 3vw, 20px);
}

ol {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    font-size: clamp(18px, 3vw, 20px);
    font-family: "Playfair Display", Georgia, 'Times New Roman', Times, serif
}

.details {
    font-family: "Playfair Display", Georgia, 'Times New Roman', Times, serif;
    color: #a9a9a9;
}


.pa-logo-1 {
    margin-right: auto;
    margin-left: 1rem;
}

/*Responsive design*/

/*small laptops or windows*/

@media only screen and (max-width: 992px) {
    .emotion-list-container {
        /*         background-color: lightcyan; */
        width: 90vw;
    }

    ol {
        flex-wrap: wrap;
        justify-content: center;
        font-family: "Playfair Display", Georgia, 'Times New Roman', Times, serif
    }
}


/*large ihpones*/
@media only screen and (max-width: 600px) {
    /*     .emotion-list-container{
        background-color: lightsalmon;
    } */
}


/*standard iphones*/
@media only screen and (max-width: 414px) {
    /*     .emotion-list-container{
        background-color: lightyellow;
    } */
}