@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter" !important;
    font-weight: bold;
    color: #ffffff;

    /*********/

    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #000000;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-weight: bold;

    overflow: hidden;
}

.photoContainer {
    height: 100%;
    width: calc(100% - 48px);

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
    overflow-y: scroll;
}
.photoContainer::-webkit-scrollbar {
    width: 0px;
}
.photoContainer::-webkit-scrollbar-thumb {
    background-color: #616161;
    /* Color of the scrollbar handle */
    border-radius: 8px;
    /* Radius of the scrollbar handle */
    transition: .2s;

    border: solid 4px #1a1a1a;
}
.photoContainer::-webkit-scrollbar-thumb:hover {
    background-color: #b6b6b6;
    /* Change color on hover */
}

.photoEntiere {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 36px;
}

.auteurDateDescription {
    display: flex;
    flex-direction: column;
    width: calc(90vh * (9 / 15));
    max-width: 90vw;
}

.etageContenantCompteEtDate {
    display: flex;
    justify-content: start;
    align-items: center;
}

.logoCompte {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    border-radius: 20px;
    background-color: blue;
}

.nomUtilisateur {
    width: 110px;
    margin-left: 10px;
}

.date {
    width: calc(100% - 40px - 110px - 10px);
    
    padding-right: 20px;
    font-size: .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.descriptionPhoto {
    margin-top: 4px;
}




.photoEnElleMeme {
    /* width: 100%;
    aspect-ratio: 3 / 5; */
    height: 90vh;
    aspect-ratio: 3 / 5;
    border-radius: 12px;

    display: flex;
    justify-content: end;
    align-items: center;

    background-position: center;
    background-size: cover;
    margin-top: 6px;
}

.boutonLikeEtCompteur {
    height: 70px;
    width: 50px;

    display: flex;
    flex-direction: column;
}

.compteur {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15px;
}

.logoCoeur {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    cursor: pointer;
}

@media screen and (max-width: 400px) {
    .date {
        font-size: .6rem;
    }
}