@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree&family=Krub&family=Mali&display=swap');
body{
    font-size: 16px;
    font-family: 'Bai Jamjuree';
    color: #0f5705;
    background-color: #65c6f3;
    margin: 0; /*เพิ่มลดพื้นที่ว่างด้านนอก*/
    padding: 0;
}
header{
    width: 100%;
    height: 250px;
    background-color: #a4e212;
    background-image: url(https://images.unsplash.com/photo-1589311581037-583328e6a0cd?q=50&w=1500&h=250&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
}

nav{
    width: 100%;
    height: 30px;
    background-color: #00ffff;
    text-align: center;
    padding-top: 10px; /*เพิ่มลดพื้นที่ว่างด้านใน*/
}
nav >a { /*แท็ก <a> เฉพาะที่อยุ่ในแท๊ก <div>*/
    color:#ffffff;
    text-decoration: none;
    margin-right: 90px;
    font-size: 18px;
}
nav > a:hover{
    color:palevioletred;
}

section{
    width:1300px;
    min-height: 600px;
    overflow: auto; /*ให้ขนาดขยายได้อัตโนมัติ*/
    background-color: #76b0e0;
    margin: 20px auto;
    border-radius: 5px;
    box-shadow: 4px 4px 8px #e8e8e8;
}

footer{
    width:100%;
    height: 100px;
    background-color: #f7658ad8;
    text-align: center;
    font-size: 13px;
    color: #e8e8e8;
}
#headermain{
    width:1300px;
    height: 300px;
    margin: auto;
}
#headerleft {
    width:50%;
    float: left;
    text-align: left;
}
#headerright {
    width:50%;
    float: right;
    text-align: right;
}
#logo{
    height: 130px;
    border-radius: 50%;
    margin-top: 50px;
    margin-right: 10px;
    float: left;
}
#webname{
    font-size: 30px;
    font-weight: bold;
    margin-top: 40px;
    color: #ffffff;
}
#webslogan{
    font-size: 26px;
    font-weight: bold;
    margin-top: 20px;
    color: #ffffff;
}
#webcontact{
    font-size: 18px; 
    float: right;
    margin-top: 35px;
    padding: 10px 10px;
    backdrop-filter:blur(3px);
    background-color: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.product{
    width: 20%;
    height: 280px;
    border: 2px solid#ffffff; /*กำหนดได้ 3 แบบ solid เส้นเรียบๆ/dashed/dotted จุดไข่ปลา*/
    border-radius: 5px;
    float:left;
    margin: 10px 10px 10px 30px;
    text-align: center;
    overflow: hidden; /*ซ่อนส่วนที่เกิน*/
}
.product:hover{
    border: 2px dotted #0e8af0; /*ควรขนาดเท่ากันกับ product*/
}
.img1:hover{
    transform: scale(1.2);
    transition: 0.5s;
}

@media screen and (max-width:1023px) /*ส่วน Tablet*/
 {
    #headermain {
        width: 100%;
    }
    section{
        width: 90%;
    }
    .product{
        width: 30%;
        margin: 5px 5px 6px 10px;
    }
    #logo {
        height: 130px;
    }
  
    #webname{
        font-size: 30px;
        margin-top: 40px;
    }
    #webslogan{
        font-size: 24px;
    }
    nav > a {
        margin-right: 40px;
    }
 }
@media screen and (max-width:767px) /*ส่วน Mobile*/
{
    header{
        height: 350px;
    }
    #headermain {
        width: 100%;
        height: 500px;
    }
    #headerleft{
        width: 100%;
    }
    #headerright{
        width: 100%;
    }
    section{
        width: 95%;
    }
    .product{
        width: 85%;
        height: 400px;
        margin: 20px auto;
        float:none
    }
    #logo {
        height: 130px;
    }
  
    #webname{
        font-size: 30px;
        margin-top: 40px;
    }
    #webslogan{
        font-size: 24px;
    }
    nav > a {
        font-size: 14px;
        margin-right: 20px;
    }
 }
    
 


