/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set a background color and font family */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Navigation styles */
nav {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: fixed;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
}

/* Page Header styles */
.header {
    background-color: #ec7575;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.title {
    font-size: 36px;
    margin-top: 10px;
}

.subtitle {
    font-size: 18px;
}

.img-holder img {
    max-width: 100%;
    padding-top: 20px;
}

/* About section styles */
.section {
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Portfolio section styles */
.image-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.05);
}

/* Contact Section styles */
.contact {
    background-color: #ec7575;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-size: 18px;
    margin-bottom: 10px;
}

input[type="email"] {
    width: 300px;
    padding: 10px;
    border: none;
    margin-bottom: 20px;
}

button {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Page Footer styles */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

footer ul li a img {
    width: 30px;
    height: 30px;
}
.container .embed-responsive.embed-responsive-16by9 .embed-responsive-item {
    width: 413px;
    height: 178px;
}
.form-wrapper.flex form .container {
    width: 720px;
    height: 600px;
}
.container .embed-responsive.embed-responsive-16by9 .embed-responsive-item {
    width: 720px;
    height: 600px;
}
