@media screen and (max-width: 768px) {
    @import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Tangsa:wght@400..700&display=swap');
    * {
        font-family: Noto Sans Tangsa;
    }
    header nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: white;
        font-weight: bold;
        border-radius: 5px;
        width: 100%;
    }
    h3 {
        color: #1e2333;
        font-weight: bold;
        margin-left: 10px;
    }
    .bold {
        font-weight: bold;
    }
    p {
        color: #1e2333;
    }
    header nav ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        margin-right: 0;
        list-style-type: none;
    }
    header nav ul a {
        color: #1e2333a4;
        text-decoration: none;
    }
    body {
        background-color: #20202b;
    }
    button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 5% auto;
        width: 200px;
        height: 50px;
        border-radius: 25px;
        background-color: #1e2333;
        color: #ffffff;
        font-size: 16px;
    }
    button:hover {
        background-color: #2c3144;
    }
    img {
        width: 100%;
        height: auto;
    }
    h1 {
        color: #ffffff;
        text-align: center;
        font-size: 2.5em;
        margin-top: 50px;
    }
    #aboutMe {
        display: grid;
        grid-template-columns: 1fr;
    }
    #experience,
    #education {
        display: grid;
        grid-template-columns: 1fr;
    }
    article {
        background-color: #b8c2e4;
        border-radius: 5px;
        margin: 0;
        padding: 10px;
        width: auto;
    }
    section, article{
        margin: 20px;
        padding: 10px;
        background-color: #ffffff;
        border-radius: 5px;
    }
    figure {
        margin: 0 auto;
    }
    footer {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #20202b;
        color: white;
        font-weight: bold;
        height: 100px;
    }
    form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        margin: 0 auto;
        border-radius: 10px;
        background-color: #ffffff;
        padding: 20px;
    }
    input[type="email"],
    input[type="password"],
    input[type="text"],
    form textarea {
        width: 100%;
        margin-bottom: 10px;
        height: 40px;
    }
    input[type="submit"],
    input[type="reset"] {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        background-color: #1e2333;
        color: #ffffff;
        font-size: 16px;
        cursor: pointer;
    }
    input[type="submit"]:hover {
        background-color: #2c3144;
    }
}