@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    background-color: var(--light-color);
    font-family: "Segoe UI","Noto Sans",Helvetica,Arial,sans-serif;
    min-width: 830px;
    max-width: 830px;
    margin: auto;
}

header {
    padding: 20px;
    background-color: var(--xlim-color);
    color: white;
    text-align: center;
    font-size: xx-large;
    font-family: 'Kanit', sans-serif;
    font-weight: 800;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
}
h1 {
    line-height: 1.25;
    padding-bottom: .3em;
    font-size: 2em;
    color: var(--dark-color);
    border-bottom: 1px solid var(--dark-color);
}
h2 {
    color: var(--xlim-color);
}
h3 {
    color: var(--orange);
}

a {
    color: var(--blue);
}

img {
    max-width: 100%;
    margin: auto;
    display: block;
    border: 1px solid black;
    box-shadow: rgba(0, 0, 0, 0.4) 5px 5px 5px;
}

kbd {
    background-color: rgb(236, 236, 236);
    border: 1px solid rgb(196, 196, 196);
    border-radius: 2px;
    padding: 3px;
}

li + li {
    margin-top: .25em;
}
strong {
    font-weight: 600;
}
hr.midrule {
    width: 50%;
    margin: 20px auto;
    border: 0;
    border-bottom: 1px solid var(--dark-color);
}


footer {
    border-top: 1px solid black;
    margin-top: 20px;
    padding: 0px 0 70px 0;
}
footer img {
    border: 0;
    box-shadow: none;
}

#authors {
    margin-top: 20px;
    margin-bottom: 20px;
    color:var(--dark-color);
    font-size: small;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#logo {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
#logo img {
    height: 50px;
}