body {
    margin: 60px auto;
    width: 50%;
    font-family: 'Helvetica', 'Arial', 'Sans-Serif';
    font-size: 12px;
}

@media screen and (min-width:768px) and (max-width:1536px) {
    body {
        width: 70%
    }
}

/* Add this media query for mobile devices */
@media screen and (max-width: 768px) {
    body {
        margin: 20px auto;
        /* Smaller margins on mobile */
        width: 88%;
        /* Wider content area */
        font-size: 12px;
        /* Slightly larger base font for readability */
    }

    nav ul {
        font-size: 1.2em;
        /* Smaller nav text */
    }

    h1 {
        font-size: 2em;
        /* Smaller headlines */
    }

    h2 {
        font-size: 1.5em
    }

    p {
        font-size: 1.2em;
        /* Adjusted paragraph size */
    }
}

.pseudonyms {
    font-size: 1.2em;
    color: rgb(60, 60, 60);
    margin-top: -10px;
    /* Pull it closer to the name */
}

@media screen and (min-width: 769px) {
    .pseudonyms {
        display: inline;
        margin-left: 1em;
        position: relative;
        top: -2px;
    }

    h1 {
        display: inline;
    }
}


nav {
    margin-bottom: 2em;

}

nav ul,
footer ul {
    font-family: 'Helvetica', 'Arial', 'Sans-Serif';
    padding: 0px;
    list-style: none;
    font-weight: bold;
}

nav ul li,
footer ul li {
    display: inline;
    margin-right: 20px;
}

nav ul {
    font-size: 1.5em;
}

a {
    text-decoration: none;
    color: #999;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 3em;
    font-family: 'Helvetica', 'Arial', 'Sans-Serif';
}

p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #111;
}

footer {
    border-top: 1px solid #d5d5d5;
    font-size: 1.2em;
    margin-top: 3em;
}

nav {
    border-bottom: 1px solid #d5d5d5;
    margin-top: 3em;
}

h2 {
    margin-top: 3em
}

ul.posts {
    margin: 20px auto 40px;
    font-size: 1.5em;
}

ul.posts li {
    list-style: none;
}

a.post {
    text-decoration: none;
    color: #4c1f76;
    font-weight: 600;
}

/* Link preview cards */
.link-preview {
    margin: 1.5em 0;
}

.link-preview__link {
    display: block;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    padding: 1.2em 1.4em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 1));
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.link-preview__link:hover {
    border-color: #d0c7ff;
    box-shadow: 0 8px 18px rgba(84, 55, 143, 0.12);
    transform: translateY(-2px);
    text-decoration: none;
}

.link-preview__title {
    font-weight: 600;
    font-size: 1.3em;
    color: #2b2452;
}

.link-preview__description {
    margin-top: 0.4em;
    font-size: 1.1em;
    line-height: 1.4;
    color: #4a4a4a;
}

.link-preview__footer {
    margin-top: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95em;
    color: #6a6a6a;
}

.link-preview__cta {
    font-size: 1.2em;
}

/* Embedded media cards */
.media-embed {
    margin: 1.5em 0;
    padding: 1.4em 1.5em;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 248, 1));
    box-shadow: 0 2px 12px rgba(70, 46, 120, 0.05);
}

.media-embed__frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.media-embed__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.media-embed--soundcloud .media-embed__frame {
    padding-top: 0;
    height: 166px;
    background: none;
}

.media-embed--soundcloud .media-embed__frame iframe {
    position: static;
    height: 100%;
}

.media-embed__title {
    margin-top: 1em;
    font-weight: 600;
    font-size: 1.25em;
    color: #2b2452;
}

.media-embed__description {
    margin-top: 0.4em;
    font-size: 1.1em;
    line-height: 1.4;
    color: #4a4a4a;
}
