@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


body {
    background-color: #121212;  /* Dark background */
    color: #dcdcdc;  /* Light gray text for readability */
    font-family: 'Poppins', sans-serif;  /* Modern font */
    text-align: center;  /* Center all text */
    padding: 20px;
}

h1, h2, h3,h4, h5, h6 {
    color: #ffffff;  /* White headings */
    font-weight: bold;
    margin-bottom: 10px;
}
	 
a {
    color: #4dabf7;  /* Light blue links */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=EB+Garamond:wght@400;700&display=swap');

body {
    font-family: 'Playfair Display', 'EB Garamond', serif;
    color: #fff; /* White text */
    background-color: #0d0d0d; /* Dark background */
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 2rem;
}

h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 700;
}

p {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #dcdcdc; /* Light gray for readability */
}

a {
    color: #b55dba; /* Stylish purple for links */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.post-container {
    width: 60%;  /* Set a fixed width for better structure */
    margin: 20px auto;  /* Center align the block */
    background: #1e1e1e;  /* Slightly lighter background for contrast */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.post-content {
    margin-bottom: 15px;
}

.curated {
    font-style: italic;
    color: #a0a0a0;  /* Subtle text for details */
}

header {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: black;
}

.logo {
    font-size: 24px;
    color: white;
}

nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cta {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 20px;
}

h1 {
    margin: 40px 0;
    font-size: 28px;
}

.newsletters {
    width: 60%;
    margin: 0 auto;
    text-align: left;
}

.newsletter-item {
    border-bottom: 1px solid #444;
    padding: 15px 0;
}

.newsletter-item h2 {
    color: white;
    font-size: 20px;
}

.newsletter-item p {
    color: #F4F6F7 ;
    font-size: 14px;
}

.newsletter-item a {
    color: #d169e7;
    font-weight: bold;
    text-decoration: none;
}
.newsletter:not(:last-child) {
    margin-bottom: 30px;!important /* Adds space between newsletters */
}
