div.wrapper * {
    box-sizing: border-box;
    letter-spacing: 0.2px;
}
div.wrapper {
    background: #fbfbfb;
}


header img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    position: relative;
}
header div {
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
    font-size: 1.1em;
    color: aliceblue;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}
header h1 {
    margin: 15px 0;
}
header h1, header p {
    text-shadow: 1px 1px rgba(1, 1, 1, 0.2);
}


main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px 5%;
}
main div {
    padding: 5px 0;
}
main h2 {
    margin: 10px 0;
}


/* list */
div.list {
    margin-bottom: 15px;
}
div.list ol {
    list-style-type: none;
    counter-reset: olstyle;
    padding-left: 5%;
}
div.list li {
    margin: 11px 0;
}
div.list a {
    color: #1f1f1f;
}
div.list li:before {
    display: inline-flex;
    content: counter(olstyle);
    counter-increment: olstyle;
    background: #5f5f5f;
    color: #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    justify-content: center;
    align-items: center;
}
div.list a:hover {
    color: #0088ff;
}


/* article */
section.brief p {
    font-size: 1em;
    line-height: 1.4;
}
article h3 {
    font-size: 1.2em;
}
article div figure {
    margin: 10px 0;
}
article div figure img {
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
}
article div figure figcaption {
    font-size: 15px;
    padding-left: 15px;
    color: #3f3f3f;
}
article p {
    line-height: 1.4;
}


/* other blogs */
.otherpages {
    margin: 30px 0;
}
.otherpages a {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}
.otherpages h3 {
    text-align: center;
    margin: 50px 0 35px;
}
.otherpages div.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    row-gap: 15px;
}
.otherpages .img {
    max-width: 430px;
    aspect-ratio: 3 / 2;
    background-size: cover !important;
    position: relative;
}
.otherpages .img div {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 2px;
    position: absolute;
    bottom: -5px;
    border: 0.3px solid #9f9f9f;
    border-radius: 4px;
}
.otherpages h6 {
    margin: 0;
}
.otherpages a:hover h6 {
    color: #0088ff;
    text-decoration: underline;
}
.otherpages a.img:hover {
    background-size: 105% !important;
    background-position: center !important;
}


@media screen and (min-width: 442px) {
    header div {
        top: 140px;
    }
    article {
        font-size: 1.05em;
    }
}
@media screen and (min-width: 680px) {
    div.wrapper {
        font-size: 1.2em;
    }
    header div {
        top: 150px;
    }
    header h1 {
        margin: 25px 0;
    }
}
@media screen and (min-width: 980px) {
    div.wrapper {
        font-size: 1.3em;
    }
    header div {
        top: 200px;
    }
    article {
        font-size: 1.1em;
    }
    .otherpages div.grid {
        grid-template-columns: repeat(4, 1fr);
    }
    section.brief p {
        font-size: 1.1em;
    }
}
