:root {
    --pink: #FFD3D3;
    --purple: #FB17D2;
}


html, body {
    max-width: 100%;
    overflow-x: hidden;
}
body{
    background-color: white;
    font-family: 'Cute Font', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}
.top-logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2vw;
    margin-left: 1vw;
    margin-top: 1vw;
}

.small-icon{
    width: 10vw;
    height: 10vw;
}

.centered-div{
    position: fixed;
    inset: 0px;
    width: 100vw;
    height: 5rem;
    max-width: 100vw;
    max-height: 100dvh;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.div-button{
    width: 90vw;
    height: 4vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
}
.developer-info{
    position: sticky;
    bottom: 0;
    left: 2vw;
    color: red;
}

.trans-color{
    border: 3px solid var(--pink);
    color: #000000;
}
.dark-color{
    background-color: black;
    border: 3px solid #000000;
    color: var(--pink);
}

input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none;
}

.div-title {
    font-family: 'Cute Font', sans-serif;
    margin: 0px;
    margin-left: 5vw;
    margin-bottom: 12px;
}

.scroll-div {
    width: 100vw;
    height: 15vh;
    display: flex;
    align-items: flex-start;
    gap: 5%;
    padding-left: 5%;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* flex-wrap: wrap; */
}

.scroll-item {
    width: 29%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.scroll-photo {
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.info-text {
    margin: 0;
}

.info-big {
    font-size: 24px;
}

.info-small {
    font-size: 14px;
    color: var(--purple);
}


/* Activity */

.activity {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10vw;
}

.post-container {
    width: 100vw;
    height: 7%;
}

.post-info {
    height: 5vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    padding-left: 2.5vw;
}

.post-content {
    height: 90%;
    overflow-y: hidden;
}

.profilepicture {
    max-width: 10vw;
    max-height: 10vw;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
}

.full-width {
    width: 100%;
}

.caption {
    font-size: 24px;
    margin: 0px;
}

.sixp {
    margin-left: 6px;
}
.lightgrey {
    color: rgb(163, 163, 163)
}

/* Chat System */

.chat {
    width: 90vw;
    margin-left: 5vw;
}

.sender {
    color: red; 
    font-size: 20px;
}

.reciever {
    color: rgb(0, 68, 255);
    font-size: 20px;
}

.message {
    margin: 0px;
    margin-left: 6px;
}

.last {
    margin-bottom: 6px;
}

.navigation-bar {
    width: 100vw;
    height: 5vh;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    background-color: white;
    position: sticky;
    bottom: 0;
}


.navigation-button {
    height: 100%;
    width: auto;
}
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    align-items: center;
}

.nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.nav-button img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.small-icon {
    height: 32px;
    width: auto;
}


/* Comment section */

.comment-section {
    background-color: white;
    height: 70vh;
    width: 100vw;
    position: fixed;
    bottom: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: rgb(0 0 0 / 31%) 2px -9px 10px 2px;
}

.comment-bar {
    position: fixed;
    bottom: 8vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comment-input {
    width: 80%;
}

.image-button {
    width: 12vw;
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 222, 179, 0);
    border: none;
}

.image-button img {
    object-fit: cover;
    width: 100%;
}

.comment-info {
    height: 7vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    padding-left: 5vw;
    padding-right: 5vw;
}

.comment-box {
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    overflow-y: scroll;
}

.comment-item {
    width: 90%;
    margin-left: 5%;
    display: flex
;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.5vw;
}

.comment-content {
    display: flex;
        gap: 0;
        justify-content: flex-start;
        flex-direction: column;
}

#comment-section {
    visibility: hidden;
}