/* Reset default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font family */
body {
    font-family: 'Kanit', sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

/* Header and Logo */
header {
    background-color: #4CAF50;
    background-image: l;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header .logo img {
    width: 100px;
    height: auto;
}

header nav {
    margin-top: 15px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffeb3b;
}

/* Main Content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
    padding: 20px;
}

main .content {
    max-width: 800px;
}

main .content h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

main .content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
.lir{
    padding-right: 20px;
}