
body{
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    padding: 20px;
}
h1{
    text-align: center;
    margin-bottom: 20px;
}
h2{
    text-align: center;
    margin-bottom: 20px;
}
header{
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}
nav{
    background-color: #14eb31;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a{
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #14eb31;
}
nav ul li a:hover{
    background-color: #0f9c24;
}
main{
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
    margin: 0 auto;
}
div.carousel{
    width: 100%;
    height: 300px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
div.carousel-item{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
div.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
div.gallery-item{
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
div.gallery-item img{
    width: 100%;
    height: auto;
    border-radius: 5px;
}
div.gallery-item h3{
    margin-top: 10px;
    font-size: 18px;
}
div.gallery-item p{
    margin-top: 5px;
    color: #555;
}
footer{
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
}

