body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #556970;
}

nav {
    background-color: #556970;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid black;
}

nav .language-slider {
    flex: 1;
}

nav .language-slider a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

nav .language-slider a:hover {
    text-decoration: underline;
}

nav .logo {
    flex: 1;
    text-align: center;
    max-width: 150px; /* Set maximum width for the logo */
}

nav .logo img {
    max-width: 100%;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    display: block;
}

nav ul li a:hover {
    background-color: #ddd;
    color: black;
}

.video-banner {
    position: relative;
    width: 100%;
    height: 40vh; /* Adjust the height to make the video shorter */
    size: cover;
    overflow: hidden;
}

.video-banner img{
    transform: scale(1.3);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.banner-text h1 {
    font-size: 3em;
    margin: 0;
}

.banner-text p {
    font-size: 1.5em;
    margin: 10px 0 20px;
}

.banner-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 1em;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #0056b3;
}

.textbox {
    background-color: #556970;
    color: white;
    text-align: center;
    padding-top: 5%;
    font-size: large;
}

.textbox a{
    color: white;
    font-size: 1.7rem
}

.textbox img{
    max-width: 30vw;
    height: auto;
}

  footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Adjust the height as needed */
    background-color: #aba944; /* Adjust the color as needed */
    color: white; /* Text color to contrast with the background */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px; /* Adjust the font size as needed */
  }

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}
.image-box {
    position: relative;
    width: 400px; /* Set a fixed width for uniform size */
    height: 400px; /* Set a fixed height for uniform size */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-box .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    background: radial-gradient(circle, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    padding: 1% 10%;
    text-align: center;
}
@media (max-width: 600px) {
    .image-box {
        width: 100%;
        height: auto;
    }
}

.blank {
    padding: 50px;
}

.paypal {
    width: 400px; /* Set a fixed width */
    margin: auto auto; /* This centers the div horizontally */
    padding: 20px; /* Optional: padding for content */
}
