body {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    background-color: #ffc800;
    color: #000;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slideshow-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.slide.active {
    opacity: 1;
    display: flex;
}

.slide-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    height: 80vh;
}

.text-container {
    flex: 1;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-container {
    flex: 1;
    padding: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-weight: 700;
    font-size: 1.8rem;
}

.post-date {
    font-size: 0.9rem;
    color: #555;
}

.post-text {
    font-size: 1.65rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.post-media {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-image {
    object-fit: contain;
    border-radius: 15px;
}

.media-video {
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .post-text {
        font-size: 1rem;
    }
}
