:root {
    --haikei: rgb(248, 244, 226)
}

.button {
        display: inline-block;
        background-color: #e8abb8;
        color: rgb(255, 255, 255);
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .button:hover {
        background-color: #ee718c;
    }

    @font-face {
        font-family: 'yasashisagothic';
        src: url('fonts/yasashisagothic/YasashisaGothicBold-V2.otf') format('opentype');
        font-weight: normal;
    }

    body {
        font-family: 'yasashisagothic', serif;
        padding: 50px;
        background-color: var(--haikei)
    }

    .content {
        max-width: 1500px;
        margin: 0 auto;
    }

    header {
        border-bottom: 2px solid #333;
        margin-bottom: 20px;
    }

    article {
        margin-bottom: 40px;
    }

    h1,
    h2 {
        color: hsl(0, 0%, 20%);
    }

    time {
        color: #666;
        font-size: 0.9em;
    }

    .header-image {
        display: block;
        margin: 0 auto;
        width: 700px;
        max-width: 100%;
        height: auto;
    }
