@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@900&family=Pridi&display=swap');

body, button, input, optgroup, select, textarea{
    /*font-family: 'Big Shoulders Display', cursive;*/
    font-family: 'Pridi', serif;
}

.bg01{
    background-color: #F0F0F0;
    /* background-image: url('/assets/images/title-72-white.png'); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: 50%;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* ระยะห่างระหว่างภาพ */
    padding: 10px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 คอลัมน์, หักลบระยะห่าง */
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* มุมโค้งของภาพ */
}