﻿body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    position: relative;
    width: auto;
    height: auto;
}

    /* พื้นหลัง */
    body::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('../../images/img/287109.jpg');
        background-position: center;
        background-size: cover;
        z-index: -1;
    }

.wrapper {
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.album-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}



.album {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 45%;
    color: black; 
    text-decoration: none; /* ไม่มีเส้นใต้ */
    max-width: 300px;
    text-align: center;
}

    .album img {
        width: 66%;
        height: 200px; /* ความสูงคงที่ */
        object-fit: cover; /* ทำให้รูปภาพพอดีกับกรอบ */
    }

    .album h3 {
        padding: 10px;
        font-size: 1.2em;
    }

/* Responsive Design */
@media (max-width: 600px) {
    .album-container {
        flex-direction: column;
        align-items: center;
    }

    .album {
        width: 90%;
    }
}

