@font-face
{
    font-family: JetBrainsMono;
    src: url(../ttf/JetBrainsMono-Regular.ttf);
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: JetBrainsMono, sans-serif;
    letter-spacing: -0.25px;
    font-size: 0.85rem;
}


body
{
    background-color: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

a
{
    text-decoration: none;
    color: #009dff;
    padding: 0.25rem;
}

a:focus, a:hover
{
    background-color: #009dff;
    color: #fff;
}

a:visited
{
    color: #0b6196;
}


img.logo
{
    height: 51px;
    align-self: flex-start;
    margin: 2rem;
}

div.month
{
    counter-reset: counter;
    width: 400px;
    margin-bottom: 5rem;
}

div.month > div.summary
{
    border-top: 1px solid #ebebeb;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    padding-left: 35px;
}

div.month > div.summary > p
{
    color: #666;
}


div.month > h1.title
{
    padding: 1rem;
    margin-bottom: 2rem;
    padding-left: 35px;
    background-color: #ccff00;
    font-weight: normal;
}

div.month > div.details
{
    padding-left: 35px;
    padding-bottom: 2rem;
    position: relative;
}

div.month > div.details::before
{
    counter-increment: counter;
    content: counter(counter);
    position: absolute;
    left: 0;
    top: 8px;
    color: #ccff00;
    font-size: large;
}

div.month > div.details > p.date
{
    color: #999;
    padding: 0.5rem 0;
}

div.month > div.details > h1.title
{
    font-weight: normal;
}

div.month > div.details > div.screenshots
{
    display: flex;
    gap: 0.25rem;
    padding-top: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
}


@media only screen and (max-width: 500px)
{
    body
    {
        padding: 1rem;
    }

    div.month
    {
        width: 75vw;
    }
}
