body {
    font-family: Arial, sans-serif;
    background-color: rgb(238, 240, 140);
    border-radius: 50px;
}

h3 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #5eec0c;
}

.welcome-message {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #5e75a5;
}

.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.image-row {
    display: flex;
    gap: 30px;
}

.image-row img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    flex-shrink: inherit;
}

.btn-reserver {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    border-radius: 15px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

