@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 .intro .line {
    width: 30%;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 100px;
}

.container .intro p {
    padding: 10px 0px 10px 0px;
    font-size: 20px;
    text-align: justify;
    text-indent: 100px;
    line-height: 35px;
}

/* ---------------------------------------------------------------------------------- */

.all-paper {
    width: 100%;
    height: fit-content;
    padding: 5% 20%;
}

/* information */
.container .paper {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: start;
}

.container .paper h3 {
    font-size: 20px;
    line-height: 35px;
    margin-right: 20px;
}

.container .paper .btn-load {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-load button {
    font-size: 16px;
    font-family: inherit;
    padding: 10px;
    background-color: #0C4723;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    transition: .3s;
    cursor: pointer;
}

.btn-load button a {
    text-decoration: none;
    color: white;
}

.btn-load button:hover {
    background-color: hsla(143, 71%, 16%, 0.3);
}

.btn-load button:hover a {
    color: #0C4723;
}

/* ------------------------------------------------------------------------------------------------- */

/* blank */
.container .blank {
    width: 100%;
    height: 600px;
}

/* ------------------------------------------------------------------------------------------------- */

/* responsive */
@media screen and (max-width: 1320px) {

    /* intro */
    .container .intro {
        padding: 100px 15%;
    }

    /* link back */
    .container .link-back {
        padding: 0 15%;
    }

    /* paper */
    .container .all-paper {
        padding: 100px 15%;
    }
}

/* 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 .intro p {
        line-height: 25px;
        text-indent: 50px;
        font-size: 14px;
    }

    /* paper */
    .container .all-paper {
        padding: 30px 10%;
    }

    .container .all-paper .paper {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .container .all-paper .paper h3 {
        font-size: 16px;
        line-height: 25px;
    }

    .btn-load button {
        font-size: 14px;
    }
}