@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

.home {
    text-align: center;
}

.contents {
    background-color: #ffee99;
    width: 25em;
    height: auto;
    text-align: center;
    margin: 0 auto;
}

.contents a {
    color: rgb(43, 43, 43);
    font-family: 'Noto Sans JP Black', sans-serif;
}

.contents a:hover {
    text-decoration: none;
    color: gray;
}

.komejirushi {
    font-size: 0.95rem;
    color: gray;
}

.devlog-end {

    margin: 40px auto;
    padding: 40px 24px;

    max-width: 900px;

    background:
        linear-gradient(135deg, #111827, #1e293b);

    color: white;

    border-radius: 28px;

    text-align: center;

    box-shadow:
        0 18px 50px rgba(0,0,0,0.18);
}

.devlog-end h1 {

    margin: 0 0 16px;

    font-size: clamp(2rem, 5vw, 3.2rem);

    line-height: 1.3;

    font-weight: 900;

    letter-spacing: -0.03em;
}

.devlog-end p {

    margin: 0;

    font-size: 1rem;

    line-height: 1.9;

    color: rgba(255,255,255,0.82);
}

@media (max-width: 700px) {

    .devlog-end {

        margin: 24px 12px;
        padding: 30px 18px;

        border-radius: 22px;
    }

    .devlog-end p {

        font-size: 0.95rem;
    }
}