@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    font-family: Poppins, sans-serif;
}
.header {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}
.header.scrolled {
    backdrop-filter: blur(5px);
    background-color: #ffffff;
}
.header h1 {
    text-decoration: none;
    color: #000000;
    margin: 0;
    font-size:xx-large;
}
.header a {
    text-decoration: none;
    color: inherit;
}
.navbar {
    display: flex;
    justify-content: flex-end;
    background-color: #ffffff(0, 0%, 100%);
    padding-right: 30px;
}
.navbar a {
    color: rgb(0, 0, 0);
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}
.navbar a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgb(255, 255, 255);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    right: 0;
}
.navbar a:hover {
    color: #7c7c7c;
}
.navbar a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7c7c7c;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}
.navbar a:hover::after {
    transform: scaleX(0);
    transform-origin: bottom left;
}   

.title {
    font-size: 2em;
    font-weight: 600;
    color: #000000;
    margin-top: 90px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

.content-container {
    display: flex; /* Use flexbox to align items side by side */
    align-items: centere;
    justify-content: space-between; /* Add space between the description and the image */
    gap: 20px; /* Add spacing between the text and the image */
    max-width: 2000px; /* Limit the width of the container */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px; /* Add padding around the container */
}

.description {
        width: 100%; /* Make the description take up the full width of the screen */
        text-align: center; /* Center-align the text */
        font-size: 1.3em; /* Adjust font size */
        line-height: 1.6; /* Improve readability */
        color: #555; /* Text color */
        margin: 20px auto; /* Add vertical spacing and center horizontally */
        padding: 20px; /* Add padding for better spacing */
        max-width: 1200px; /* Optional: Limit the maximum width for readability */
    }

.image-container {
    display: flex; /* Use flexbox to arrange images in a row */
    justify-content: space-between; /* Add space between the two images */
    align-items: center; /* Align images vertically */
    margin: 20px auto; /* Add spacing around the container */
    max-width: 1000px; /* Restrict the width of the container */
}

.image-container img {
    width: 48%; /* Make each image take up 48% of the container width */
    height: auto; /* Maintain the aspect ratio of the images */
    border-radius: 10px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.footer {
    background-color: #161616; /* Black background */
    color: #fff; /* White text color */
    text-decoration: none;
    height: 25vh; /* Half the screen height */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items:first baseline; /* Center vertically */
    text-align: center; /* Center text alignment */
    margin-top: 50px;
}

.footer p {
    font-size: 1.2em; /* Adjust font size */
    margin: 0; /* Remove default margin */
    margin-top: 30px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
  }
  .header h1 {
    font-size: 2em;
    margin: 0 0 10px 0;
    padding: 0;
  }
  .header a {
    font-size: 1em;
    padding: 0;
  }
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
    z-index: 1200;
  }
  .navbar.show {
    display: flex;
  }
  .navbar a {
    color: #fff !important;
    padding: 10px 0;
    font-size: 1em;
    text-align: left;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2000;
    position: fixed;
    top: 15px;
    right: 15px;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #111;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.black span {
    background: #fff !important;
  }
  .title {
    font-size: 0.8em;
    margin-top: 100px;
    margin-bottom: 16px;
    padding: 0 5px;
  }
  .image-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 100vw;
    margin: 10px auto;
  }
  .image-container img {
    width: 95vw;
    max-width: 400px;
    margin-bottom: 10px;
  }
  .content-container {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    max-width: 100vw;
  }
  .description {
    width: 100%;
    font-size: 1em;
    padding: 10px;
    margin: 10px auto;
    max-width: 100vw;
  }
  .footer {
    flex-direction: column;
    height: auto;
    padding: 20px 10px;
    margin-top: 0;
    justify-content: center;
    align-items: center;
  }
  .footer p {
    font-size: 1em;
    margin-top: 10px;
    word-break: break-all;
  }
  .footer a {
    font-size: 1em;
    margin: 0 2px;
    word-break: break-all;
  }
}