  
body {
    font-family: Arial, sans-serif;
    background-color: white;
}

.header-icons {
    position: absolute;
    top: 3%;
    width: 95%; /* span the full width of the post */
    display: flex;
    align-items: center; /* Vertically align the children */
    justify-content: space-between; /* Push the avatar to the left and the ellipsis to the right */
}

.avatar-text-container {
    display: flex;
    align-items: center;
}

.header-text {
    /* flex-grow: 1; Allow this element to take up remaining space in the flex container */
    margin-left: 20px; /* Optional: Add some spacing between the avatar and the text */
    font-size: 36px; /* Adjust as per your requirements */
}

.ellipsis-icon {
    width: 2%;
}

.avatar-icon {
    width: 120px;
    cursor: pointer;
}

.post {
    position: relative;
    height: 1500px;
    align-items: center;
    padding-top: 200px;
    margin: 0 auto;
    border: 1px solid #dbdbdb;
    margin-bottom: 300px;
    margin-top: 30px;
}


.post img {
    height: 80%;
    object-fit: cover; /* Ensures the image maintains its aspect ratio */
    display: block;
    max-width: 100%;
}

.icons > div {
    margin-top: 5%;
    display: flex;
    align-items: center;  /* Ensures vertical centering of flex children */
}

.heart-icon {
    display: inline-block;
    font-size: 100px;
    line-height: 100px;  /* Set the line-height equal to font-size for centering */
    cursor: pointer;
}


.icon {
    margin-right: 10px;
    cursor: pointer;
    font-size: 100px;
    width: 300px;
    height: 300px;
    color: gray; /* Set the default color to gray here */
}

.likes {
    margin-top: 2%;
    padding: 20px;
    font-size: 60px;
    text-align: left;
}

.image-container img {
    height: 1500px;
    display: block;
    margin: 0 auto;
}

.svg-icon {
    width: 70px; /* Adjust this value to your desired size */
    margin-left: 20px; /* Space between the heart icon and the SVG icon */
}

.svg-icon-1 {
    width: 70px; /* Adjust this value to your desired size */
    height: 70px; /* Adjust this value to your desired size */
    margin-left: 20px; /* Space between the heart icon and the SVG icon */
}

.button2continue {
    position: relative; 
    background-color: transparent; 
    color: black; 
    padding: 60px 180px; 
    border: none;
    border-radius: 12px;
    margin-bottom: 60px;
}

.button2continue::before {
    content: "";
    position: absolute;
    top: 0; 
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.button2overlay {
    position: absolute;
    top: 2px;  
    right: 2px;
    bottom: 2px;
    left: 2px;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: 32px;
    
    /* Flexbox for centering */
    display: flex;
    justify-content: center;  /* Horizontally center */
    align-items: center;      /* Vertically center */
}

