body{
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
}

.navbar{
    display: flex;
    background-color: #483D8B;
    /*    border: 1px solid red;    */
}

.logo{
    width: 20%;
    height: 20%;
    margin: auto auto;
    display: flex;
    justify-items: center;
    align-items: center;
/*    border: 1px solid red;    */
}

ul{
    width: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
    list-style: none;
/*    border: 1px solid red;    */
}

ul li{
    margin: 0 1rem;
}

ul li a{
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
}  

ul li a::after{
    content: '';
    width: 0%;
    height: 5px;
    opacity: 0;
    position: absolute;
    background-image: linear-gradient(to right,#94bbe9, #eeaeca);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 25px;
    transition: .4s;
}

li a:hover::after{
    width: 50%;
    opacity: 1;
}

img{
    width: 100%;
    height: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
}

.img img{
    margin: 0 auto;
    padding: 0 1rem;
    width: 50%;
    height: 50%;
    display: flex;
    justify-items: center;
    align-items: center;
}

h1{
    margin: 0 auto;
    font-size: 3em;
    font-weight: bold;
}

b{
    font-size: 24px;
    font-weight: bold;
}

.chail{
    margin: 0 auto;
    padding: 1rem;
    color: #FFD700;
    position: relative;
    text-align: left;
}

.content h2{
    margin: 1rem 0;
    font-size: 24px;
}

.content{
    margin: 0 auto;
    padding: 1rem;
    height: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content1{
    margin: 0 auto;
    padding: 1rem;
    height: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    margin: 1rem;
    padding: 1rem;
    max-width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
/*    border: 1px solid orangered;    */
}

.chail-item{
    position: relative;
    margin: 0 auto;
    padding: 6em;
    text-align: center;
    width: 60%;
    height: 50%;
/*    border: 1px solid goldenrod;    */
}

carousel-inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
}

carousel-inner .img{
    margin: 0 auto;
    padding: 0 1rem;
    width: 50%;
    height: 50%;
    display: flex;
    justify-items: center;
    align-items: center;
}

footer{
    background-color: #483D8B;
    padding: 0.5rem;
    text-align: center;
    color: #fff;
}