.index-body {
    height: 100vh;
    background: linear-gradient(270deg, #007bff, #00c3ff, #7b2ff7, #f107a3);
    background-size: 800% 800%;
    animation: gradientShift 12s ease infinite;
    color : white;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.login-prompt-card {
    background-color: #212121;
    font-family: Arial;
    color: white;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0px 4px 20px #212121;
    width: 30%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    margin: auto;
    font-size: 25px;
    font-weight: bold;
}

.login-prompt-card h1 {
    font-size: 40px;
    font-weight: bold;
    padding-top: 10px;
    background: linear-gradient(180deg, #005eff 0%, #00c3ff 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-prompt-card a {
    border-radius: 20px;
    padding: 10px 30px 10px 30px;
    background: linear-gradient(90deg, #005eff, #00c3ff);
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.login-prompt-card a:hover {
    background: linear-gradient(90deg, #00c3ff, #005eff);
}

.your-feed-card {
    background-color: #212121;
    font-family: Arial;
    color: white;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0px 4px 20px #212121;
    width: 30%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
}

.your-feed-card h1 {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(180deg, #005eff 0%, #00c3ff 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-button {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(75deg, #36f9bb 0%, #04ff96 100%);
    color: #212121;
    border: none;
    border-radius: 20%;
    font-size: 35px;
    cursor: pointer;
    box-shadow: 0px 4px 20px #212121;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-button:hover {
    box-shadow: 0px 4px 20px #00ff22;
}

.post-outer-card {
    width: 70%;
    height: auto;
    min-height: fit-content;
    background-color: #212121;
    margin: auto;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0px 4px 20px #212121;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    justify-content: flex-start;
}

.post-inner-card {
    background-color: #2e2e2e;
    font-family: Arial;
    color: white;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 10px;
}

.post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.post-inner-card #postImage {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    margin: auto 20px auto 0;
}

.post-inner-card h1 {
    font-size: 40px;
    margin-bottom: 0px;
    font-weight: bold;
    background: linear-gradient(180deg, #005eff 0%, #00c3ff 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-inner-card .user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.user-info .pfp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #444;
}

.post-inner-card h2 {
    font-size: 16px;
    font-weight: lighter;
    font-style: italic;
    color: #c4c3c3;
    margin-top: 5px;
}

.post-inner-card .pfp {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.post-inner-card .description {
    height: 40%;
    padding: 0px 20px 0px 20px;
}

.location {
    margin-top: auto;
}

.post-inner-card .like-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent url("../../src/images/heart.svg") center/contain no-repeat;
    cursor: pointer;
    transition: background-image 0.2s ease;
}

.post-inner-card .like-btn:hover {
    background-image: url("../../src/images/heart-hover.svg");
}

.post-inner-card .like-btn.liked {
    background-image: url("../../src/images/heart-full.svg");
}

.post-inner-card .comment-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent url("../../src/images/comment.svg") center/contain no-repeat;
    cursor: pointer;
    transition: background-image 0.2s ease;
}

.post-inner-card .comment-btn:hover {
    background-image: url("../../src/images/comment-hover.svg");
}

.post-inner-card .like-counter {
    margin: auto;
}

.post-inner-card .comment-counter {
    margin: auto;
}

.post-inner-card .cntrl-btns-div {
    display: flex;
    justify-content: center;
}

.post-inner-card .btn-and-counter {
    display: column;
    padding-left: 10px;
    padding-right: 10px;
}

.user-info:hover {
    cursor: pointer;
}

.user-info .username:hover {
    color: #00c3ff;
}

.post-inner-card .report-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent url("../../src/images/report.svg") center/contain no-repeat;
    cursor: pointer;
    transition: background-image 0.2s ease;
}

.post-inner-card .report-btn:hover {
    background-image: url("../../src/images/report-hover.svg");
}