body {
    /* font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the page takes up at least the full viewport height */
      font-family: VT323, sans-serif;
      font-weight: 200;
      font-size:xx-large;
  }
  header {
    background-color: rgb(119, 0, 255);
    color: #fff;
    text-align: center;
    padding: 1rem;
  }

  #title {

    color: yellow;
  }
  
  nav {
    font-weight: bold;
    max-width: 80%;
    background-color: rgb(0, 0, 0);
    display: flex;
    margin: auto;
    justify-content: center;
    padding: 0.5rem 0;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s;
  }
  
  nav a:hover {
    background-color: #555;
  }
  
  main {
    flex: 1; /* Allows the main content to take up the available space */
    padding: 2rem;
    background-color: rgb(248, 255, 189); /* Replace with your desired background color */
  }
  
  main {
    flex: 1; /* Allows the main content to take up the available space */
    padding: 2rem;
    background-color: rgb(248, 255, 189); /* Replace with your desired background color */
  }
  
  .container {
    
    max-width: 1000px; 
    margin: 0 auto;
    padding: 10px;

  }
  
  h1, h2 {
    margin-bottom: 1rem;
  }
  
  p {
    line-height: 1.6;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  footer {
    background-color: rgb(119, 0, 255);
    color: #fff;
    text-align: center;
    padding: 1rem;
    position:relative;
    bottom: 0;
  }
  

  #portfolio {  
    padding: 50px 0;
    background-color: rgb(184, 182, 160);
    text-align: center;
    width: 1000px;
    margin: 0 auto; /* Center the container */
  } 
  
  .header h1 {
    font-size: 2rem;
    color: #333333;
    cursor: pointer;
  }
  
  .container {
    /* background-color: rgb(248, 255, 156); */
    margin-bottom: 20px; /* Add margin between containers */
  }
  
  .overlay {
    display: none;
    position:fixed;
    top: 0;
    left: 0;
    width:  100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  
  .overlay-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    width: 1000px;
    height: 1000px;
    background-color: #c88dff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
  }
  
  .close-btn {
    padding: 10px;
    background-color: rgb(238, 238, 96);
    position: absolute;
    top: -20px;
    right: -20px; 
    font-size: 30px;
    color: #ff0000;
    cursor: pointer;
  }
  
  .slider {
    position: relative;
  }
  
  .slides img {
    display: none;
    width: 80%;
    margin-left: 250px;
    width:50%;
    border-radius: 5px;
  }
  
  .slides img.active {
    display: block;
    /* align-items: center; */
    /* height: 300px;
    width:auto;  */
  }
  
  .prev, .next {
    cursor: pointer;
    width: auto;
    padding: 16px;
    margin-top: 10px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgb(182, 57, 255);
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(255, 253, 127, 0.8);
  }
  
  .nav-buttons {
    text-align: center;
  }
  
  .description {
    margin-top: 20px;
    font-size:x-large;
    color: #000000;
  }
  .Logo {
    /* justify-content: left; */
    /* position: absolute;  */
    /* left: 10px;
    top: 11%; 
    transform: translateY(-10%); */
    height: 90px; /* Set the height of the image */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px;
    /* margin-left: -100px; */
}

 /* Responsive adjustments */
 @media (max-width: 768px) {
  .overlay-content {
      max-width: 90%; /* Adjust for smaller screens */
  }
}
/* 
.image_slide {
  image-resolution: calc();
} */