body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #DBD8AE; /* Background color */
    color: #000; /* Text color (black) */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 250px;
    height: 150px;
    margin-bottom: 20px; /* Spacing below the logo */
}

nav {
    margin-top: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000; /* Navigation link color (white) */
    background-color: #FFFFFF; /* Background color for buttons */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #FF0000; /* Button background color on hover */
}

.separator {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF; /* white line color */
    margin: 20px 0; /* Spacing above and below the line */
}

h1 {
    margin-top: 20px;
    color: #000; /* Header text color (black) */
}

.gallery-header {
    font-size: 24px; /* Increased font size for gallery header */
    color: #000; /* Gallery header text color (black) */
    margin-bottom: 20px; /* Spacing below the gallery header */
}

.gallery-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

.gallery-slider {
    width: 450px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.text-container {
    margin-left: 40px;
    text-align: left;
    width: 450px;
    font-weight: bold; /* Bold font for text beside photo slider */
    color: #000; /* Text color (white) */
}

#photo-text {
    color: #000; /* Text color (white) for photo descriptions */
}

.dot-indicators {
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #FFFFFF; /* White color for dots */
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
    cursor: pointer;
}

.active {
    background-color: #000; /* black color for active dot */
}

h2 {
  margin-top: 5cm; /* Adjust the margin-top as needed */
}

iframe {
  margin-top: 1cm; /* Adjust the margin-top to match the heading */
}

