body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    justify-content: space-between;
    text-align: center;
}
body::-webkit-scrollbar {
    display: none; /* Hide the scrollbar */
}

.navbar {
    background-color: #0d0c0c;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  
  .containe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 51px;
  }
  
  .logoo {
    right: 358px;
    position: relative;
    margin: 0;
    font-size: 24px;
  }
  
  .nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
  }
  .containe img{
    border-radius: 100%;
    width: 75px;
  }
  
  .nav-links li {
    display: inline;
    margin-right: 20px;
  }
  
  .nav-links li:last-child {
    margin-right: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #00bcd4;
  }

.container{
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
}
.cardhead img{
    width: 400px;
    height: 180px;
    object-fit: cover;

}
.card{
    color: white;
    width: 340px;
    min-height: 400px;
    border-radius: 8px;
    
    margin-top: 30px;
    overflow: hidden;
    margin-left: 27px;
    background-color: #121212;
    transition: all 0.3sec ease;
}
.card:hover{
    background-color: rgb(36, 34, 34);
    cursor: pointer;
    transform: translateY(-2px);
}
.cardcontent{
    padding: 20px;
    
}
