@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;
    justify-content: space-between;
    background-color: white;
    font-weight: bold;
    border-radius: 5px;
}
h3 {
    color: #1e2333;
    font-weight: bold;
    margin-left: 10px;
}

.bold{
    font-weight: bold;
}
p {
    color: #1e2333;
}
header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 25%;
    padding-top: 5px;
    margin-right: 60%;
    list-style-type: none;
    a{
        color: #1e2333a4;
        text-decoration: none;
    } 
    li {
        margin: 0 10px;
    }
}

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;
}

h1 {
    color: #ffffff;
    text-align: center;
    font-size: 2.5em;
    margin-top: 50px;
}

#aboutMe {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#experience {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    article {
        background-color: #b8c2e4;
        border-radius: 5px;
    }
}
#education {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    article {
        background-color: #b8c2e4;
        border-radius: 5px;
    }
}
section {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
}

article {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 10px;
    width: 50%;
}

figure {
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
}
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: 400px;
    height: 400px;
    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;
}
