body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color:   rgb(36, 41, 51);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2e3440;
    color: #e5e9f0;
  }
  
  .logo img {
    height: 2.3rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .logo a {
    text-decoration: none;
    color: #e5e9f0;
  }
  
  .logo .website-name {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
  }
  .nav-links {
    font-size: 1.2rem;
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    display: flex;
    align-items: center;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #e5e9f0;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff6f61;
  }
  
  .dropbtn {
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #2e3440;
    color: #e5e9f0;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
  }

  .dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2e3440;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #e5e9f0;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #88c0d0;
color:#2e3440}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: #ff6f61;
}


  
.flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0rem;
    width: auto;
    margin:0px;
  }
  
  .image-container{
    display: flex;
    flex:1;
  }

  .image-container img {
    width: 100%;
    height: auto;
  }
  
  .description-container{
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0px;
    margin-right: 2rem;
  }
  
  .description-container h2 {
    margin-bottom: 8px;
    margin-top: 0px;
    font-size: 2rem;
    color: #e5e9f0;
  }
  
  .description-container p {
    margin-bottom: 8px;
    margin-top: 0px;
    font-size: 1.5rem;
    color: #e5e9f0;
  }
  
  .description-container .btn {
    width: 100px;
    margin-top: 3px;
    display: inline-block;
    text-decoration: none;
    background-color: #88c0d0;
    color: #2e3440;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .description-container .btn:hover {
    background-image: linear-gradient(rgb(0 0 0/20%) 0 0);
    color: #2e3440;
  }

  footer {
    background-color: #2e3440;
    color: #e5e9f0;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  footer .footer-content p {
    margin: 5px 0;
  }
  

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 20px;
}

.about-header h1 {
    font-size: 2.5em;
    color: #88c0d0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    flex: 1 1 300px;
    background-color: #2e3440;
    color: #e5e9f0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
}

.about-section img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.about-section h2 {
    font-size: 1.5em;
    color: #e5e9f0;
    margin-bottom: 10px;
}

.about-section p {
    font-size: 1em;
    color: #e5e9f0;
    line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.5em;
  color: #88c0d0; 
}

.header p {
  color: #d8dee9;
  line-height: 1.5;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background-color: #3b4252;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0;
  font-size: 1.2em;
  color: #8fbcbb; 
}


.card:hover {
  transform: scale(1.1);
}

a.card {
  text-decoration: none; 
  color: inherit; 
  display: block; 
}

a.card:hover {
  text-decoration: none; 
}
