/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full viewport styling */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vw;
}

/* Main Container for Alignment */
.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns everything to the left */
    max-width: 90vw;
}

/* Main heading text (smaller, tighter) */
.main-text {
    font-size: clamp(2.5rem, 6vw, 5rem); /* Smaller and scalable */
    font-weight: bold;
    line-height: 0.6; /* Even tighter spacing */
    text-align: left;
    max-width: 90vw;
}

/* Dummy text styling */
.dummy-text {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: bold;
    margin-top: 15px;
    max-width: 90vw;
    text-align: left; /* Matches main text alignment */
}

.highlight {
    color: #999; /* Subtle contrast */
}

/* Scrollable content section */
.content {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 50px;
}

/* Styling for images */
.post img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Responsive YouTube video */
.video {
    width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio */
    max-height: 500px; /* Prevent it from getting too big */
}

/* Caption styling (matches main text, just smaller) */
.caption {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: bold;
    text-align: left;
    margin-top: 5px;
}

.p-text {
    font-size: clamp(1rem, 1.8vw, 1.5rem); /* Smaller than dummy-text */
    font-weight: normal; /* Less bold for readability */
    text-align: left;
    line-height: 1.4; /* Comfortable spacing */
    max-width: 90vw;
    color: #ccc; /* Slightly softer than white for a refined look */
	
	margin: 1em 0; /* Adds spacing between paragraphs */
	padding-bottom: 0.5em; /* Extra spacing between paragraphs */
/*	height: auto; /* Removes forced height */
/*	line-height: 1.5; /* Improves readability */
	transition: none; /* Remove animation affecting paragraph layout */
}

.date-time {
    font-size: clamp(0.7rem, 1.3vw, 1.0rem); /* Smaller but readable */
    font-family: Arial, sans-serif;
	font-weight: bold;
    text-align: left;
    color: #777; /* Softer gray for a subtle presence */
    letter-spacing: 0.05em; /* Slight spacing for a clean digital look */
    margin-top: 10px;
    opacity: 0.8; /* Slight fade to make it unobtrusive */
}

/* links */
a {
	
  color: #6a8dc4; /* light blue for unvisited links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:visited {
	
  color: #6a8dc4; /* darker blue for visited links */
}

a:hover {
  color: #ffcc00; /* Optional: Yellow on hover */
  text-shadow: 0px 0px 10px rgba(255, 204, 0, 0.8);
}

a:active {
  color: lightgrey; /* Slightly lighter grey when clicked */
}