body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
  }
  
  .main-header {
    background-color: #e62929;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .main-header h1 {
    margin: 0;
    font-size: 2cm;
  }
  .webLangauges {
    width: 150px;
    height: 150px;
    background-color: #ccc;
    border: 2px solid #999;
    text-align: center;
  }
  .pictures {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
  }
  .hidden {
    display: none;
  }
  .webLangauges button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #4e54c8;
    color: white;
    border: none;
    cursor: pointer;
  }
  .headerWebLangauges {
    text-align: center;
    margin: 20px;
    animation: spin 4s linear infinite;
  }
  
  .headerWebLangauges h2 {
    font-size: 2em;
    color: #440ae6;
    margin-bottom: 20px;
  }
  .webLangauges button:hover {
    background-color: #3a3fbc;
  }
  .big-box {
    width: 80vw;  
    height: 60vh; 
    border: 15px solid #3498db; 
    border-radius: 20px; 
    background-color: #f0f8ff; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
  }
  .projectPics {
    width: 150px;
    height: 150px;
    background-color: #ccc;
    border: 2px solid #999;
    text-align: center;
  }
  .gallery {
    width: 150px;
    height: 150px;
    background-color: #ccc;
    border: 2px solid #999;
    text-align: center;
  }
  .featured-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  

