@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');
@import url('/fonts/stylesheet.css');
@import url('/fonts/chula/stylesheet.css');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
    background-color: #fffdfa;
    font-family: 'Google Sans', sans-serif;
}

a {
    color: #387bd8;
}

a:visited {
    color: #387bd8;
}

/* Container management */
body {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 2rem 1.5rem 6rem;
}

@media (min-width: 576px) {
    body {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    body {
        max-width: 80%;
    }
}

@media (min-width: 992px) {
    body {
        max-width: 70%;
    }
}

@media (min-width: 1200px) {
    body {
        max-width: 70%;
    }
}

@media (min-width: 1400px) {
    body {
        max-width: 50%;
    }
}

.profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.profile-info {
    flex: 1;
}

.profile-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.navigator-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
}

.margin-hr {
    margin: 0.3rem 0 0.3rem 0;
    border: none;
    height: 1px;
    background-color: #000;
}

@media (max-width: 480px) {
    .profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image {
        order: -1;
    }
}

/* Font-style */
h1, h2, h3, h4, h5 {
    font-family: 'Sao Chingcha', 'Google Sans', sans-serif;
}

h2 a {
    color: #000;
}

.thai {
    font-family: 'Sao Chingcha', sans-serif;
}

.thai-bold {
    font-family: 'Sao Chingcha', sans-serif;
    font-weight: 800;
}

.text-header {
    font-weight: 600;
    font-size: xx-large;
}

.text-second-header {
    font-size: x-large;
}

.text-content {
    line-height: 1.5;
}

.thai-chula {
    font-family: 'CHULALONGKORN', 'Sao Chingcha', sans-serif;
}

/* Personalize Theme */
@media (prefers-color-scheme: dark) {
    html {
        background-color: #222225;
        color: #f9f9f9;
    }

    h2 a {
        color: #fff;
    }

    a {
        color: #93baf0;
    }

    a:visited {
        color: #93baf0;
    }

    .margin-hr {
        margin: 0.3rem 0 0.3rem 0;
        background-color: #fff;
    }
}
