/* Reset some default styles */
body, h1, h2, p, ul, li, form, table {
    margin: 0;
    padding: 0;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    background-color: lemonchiffon;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style-type: none;
    background-color: pink;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

main {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color:antiquewhite;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    main {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin-bottom: 5px;
    }
}


/* CSS for arranging images in three columns */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal-width columns */
    gap: 20px; /* Adjust the gap between images as needed */
}

.image {
    text-align: center; /* Center the image within its container */
}

.image img {
    max-width: 100%;
    height: auto;
}

/* Add background image to the VIP section */
.vip-section {
    background-image: url('car1.jpeg'); /* Replace with your image file path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; /* Set text color for better contrast */
    padding: 40px; /* Add padding to the section as needed */
}

/* Style the content within the VIP section */
.vip-content {
    background-color: rgba(0, 0, 0, 0.7); /* Add a semi-transparent background color to improve readability */
    padding: 20px;
    border-radius: 10px; /* Add rounded corners to the content container */
}

/* Style the video within the VIP section */
.vip-content video {
    width: 100%;
    max-width: 800px; /* Adjust the maximum width as needed */
    display: block;
    margin: 0 auto; /* Center the video horizontally */
}
