
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fcf4f0; 
    color: #333;
}


header {
    background-color: #e63946; 
    color: white;
    text-align: center;
    padding: 2rem;
}


main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h2 {
    color: #8b0000;
    border-bottom: 2px solid #fcbf49;
    padding-bottom: 5px;
}


ul {
    list-style-type: square;
}


footer {
    text-align: center;
    padding: 20px;         
    background: #333;
    color: white;
    width: 100%;
    
    margin-top: 50px;      
}



.mon-an {
    display: flex;          
    align-items: flex-start; 
    margin-bottom: 30px;    
    gap: 20px;              
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.anh-mon-an {
    width: 250px;           
    height: 180px;          
    object-fit: cover;      
    border-radius: 5px;
    flex-shrink: 0;         
}


.noi-dung-mon {
    flex: 1;               
}

.noi-dung-mon h3 {
    margin-top: 0;          
    color: #d62828;
}



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px;
    padding: 10px 0;
}

.gallery-item {
    overflow: hidden;         
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease; 
    display: block;
}


.gallery-item:hover img {
    transform: scale(1.1); 
}

.gallery-item p {
    padding: 10px;
    margin: 0;
    font-size: 0.9em;
    font-style: italic;
}