@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --text: #e4e4e4;
    --background: #000000;
    --border: #d5d5d5;
    --accent: #dedede;
    --href: #a5baff;
    --hover: #809eff;

    --ff: "Roboto", sans-serif;
}

* { 
    font-family: var(--ff);
    color: var(--text);
    background: var(--background);
}

.main {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    /* margin: 0 auto;
    padding: 12rem 12rem; */
}

.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 6rem;
    width: 100%;
    max-width: 60ch;
    padding: 2rem;
    /*border: 1px solid var(--border);*/ 
}

.nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
}

.main div {
    flex: 1;
    width: 100%;
    max-width: 60ch;
}

a {
    color: var(--href);
    text-decoration: none;
}

a:hover {
    color: var(--hover);
    text-decoration: underline;
}

blockquote {
    border-left: var(--border) 2px solid;
    padding-left: 1rem;
}

/* this right here is very professional */
footer {
    color: rgb(60, 60, 60);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 12px;
    height: 40vh;
}

.posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-info .post-title {
    display: flex;
    align-items: center;
}

.post-info .post-title p {
    display: flex;
    flex: 1 1 0%;
    justify-content: flex-end;
}

.post-info p {
    margin: 0;
}

.post-title a {
    text-decoration: underline;
    font-size: 1.3rem;
}

.date {
    display: flex;
    align-items: center;
    gap: 1rem;
}