.timeline {
    position: relative;
    max-width: 95%;
    margin: 10px auto;
    color: var(--text-color-200);
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--white);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
}
.datePic {
    color: var(--text-color-100);
    font-size: var(--font5);
    font-weight: 600;
    font-family: var(--font-rajdhani);
    background-color: var(--grey);
    padding: 4px 10px;
    border-radius: 4px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto;
}
.describeComment {
    font-family: var(--font-aref);
    font-weight: 600;
    font-size: var(--font4);
    color: var(--red200);
}

.content img {
    height: 300px;
    border-radius: 5px;
    transition-duration: 220ms;
    box-shadow: 16px 16px 0px -4px rgba(150, 150, 150, 0.24);
}

.content img:hover {
    transform: scale(1.05);
}

.shoutout {
    font-size: var(--font5);
    font-family: var(--font-rajdhani);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    margin: 10px;
    background-color: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

.container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #ffffff;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgb(255, 255, 255);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -16px;
}

.seenmsg {
	color: var(--blue);
	position: relative;
	margin-left: 47ch;
}

.celebrate_head {
    background-color: var(--white);
    color: var(--black);
    width: -moz-fit-content;
    width: fit-content;
    margin: 1em auto;
    font-family: var(--font-rajdhani);
    font-weight: 700;
    padding: 0.5em;
    font-size: 1.8rem;
    text-align: center;
}

.message {
    font-family: var(--font-aref);
	position: relative;
	background-color: var(--white);
	color: var(--text-color-200);
	padding: 0.6em 0.3em 0.6em 0.9em ;
	font-size: 1.175rem;
	line-height: 1.8rem;
	width: 60ch;
	border-radius: 7px;
	margin: 2em;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.1),
    0 32px 64px rgba(0, 0, 0, 0.1);
}
#leftmsg {
	margin-left: 20px;
}
#leftmsg::before {
	content: 'O';
	position: absolute;
	left: -13px;
	background-color: var(--white);
	padding: 0em 0.35em 0em 0.35em;
	transform: rotate(45deg);
	color: var(--white);
    border-radius: 4px;
}
.rightmsg {
	right: 20px;
}

