@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
    box-sizing: border-box;
}

/* Style the body */
body {
    background-color: rgb(255, 255, 255);
    max-width: 100vw;
    margin: auto;
    font-family: 'Google Sans';
}

.container {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* --------------------------------------------------------------------------------------- */

/* link back */
.container .link-back {
    width: 100%;
    margin-top: 5%;
    padding: 0 20%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.container .link-back a {
    font-size: 14px;
    text-decoration: none;
    color: #0C4723;
    text-wrap: wrap;
}

.container .link-back p {
    font-size: 14px;
    text-decoration: none;
    color: #0C4723;
    text-wrap: wrap;
}

.container .link-back a:hover {
    font-size: 14px;
    text-decoration: underline;
    color: #0C4723;
}

/* ---------------------------------------------------------------------------------- */

/* intro */
.container .intro {
    width: 100%;
    height: fit-content;
    padding: 5% 20%;
}

.container .intro h1 {
    font-size: 30px;
}

/* ---------------------------------------------------------------------------------- */

.container .news {
    width: 100%;
    padding: 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .news img {
    width: 80%;
}

/* ------------------------------------------------------------------------------------ */

/* blank */
.container .blank {
    width: 100%;
    height: 800px;
}

/* --------------------------------------------------------------------------------------- */

/* responsive */
@media screen and (max-width: 1320px) {

    /* intro */
    .container .intro {
        padding: 100px 15%;
    }

    /* link back */
    .container .link-back {
        padding: 0 15%;
    }

    .container .news {
        width: 100%;
        padding: 0 15%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* responsive phone */
@media screen and (max-width: 800px) {

    /* link back */
    .container .link-back {
        padding: 0 10%;
    }

    /* intro */
    .container .intro {
        padding: 30px 10%;
    }

    .container .intro h1 {
        font-size: 20px;
    }

    .container .news {
        width: 100%;
        padding: 0 10%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}