@import url(common.css);
@import url(navi.css);

h1 {
    font-size: 1.75em;
    line-height: 150%;
}

h2 {
    margin: 1.5em 0;
    line-height: 150%;
}

p {
    font-size: 1.2em;
    line-height: 150%;
}

main {
    padding: 140px 1.5em 0 1.5em;
}

.screenshot {
    width: 100%;
    border-radius: 1.5em;
}

.blog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-item {
    cursor: pointer;
    text-decoration: none;
    margin: 1em 0;

    .img-container {
        background-color: var(--highlight-color);
        max-height: calc(100vw);
        overflow: hidden;
        border-radius: 1.5em;

        img {
            width: 100%;
        }
    }

    h2 {
        line-height: 150%;
        font-size: 1.2em;
        text-align: center;
        margin-top: 1.5em;
        color: black;
    }
}