
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  body {
    font-family: Arial, sans-serif;
    background-color: #005ca9;
  }
 
  .container {
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;

  }
#title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 25px;
  }


.title-div {
    width: 160px;
    margin-top: 10px;
    text-align: center;
    gap: 2px;
    word-wrap: break-word;


}

.title-div p{
    color: #333;
    font-size: 14px;
}



  header {
    background-color: white;
    min-height: 10%;
    max-height: 10%;
    padding-bottom: 5px;
    border: 1px solid rgba(7, 7, 7, 0.509);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.091);
  }
  
  header .logo {
    max-width: 15%;
    

  }

  
 
  #title{
    color: #333;
  }
  
  #content{
    height: 100%;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    
    
  
    

  }

  .projects{
    background-color: #eff2f5;;
    min-width: 24%;
    max-width: 400px;
    min-height: 450px;
    margin: 0;
    padding: 20px;
    border-radius: 10%;
    box-shadow: 1px 2px 3px rgb(189, 187, 187);
    justify-content: space-between;
    display: flex;
    flex-direction: column;

  }
  
  .projects div{
	    padding-top: 20px;
	  
  }

  .projectLogo{
    width: 34%;
    height: 100%;
  }
  
  


  .hero {
    padding: 100px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
  }
  
  .hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .btn:hover {
    background-color: #555;
  }
  
  footer {
    position: fixed; 
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

@media only screen and (max-width: 1050px){
  #content{

    flex-direction: column;
    justify-content: center;

    

  }
  .projects{
    margin: auto;

  }
  
  .projectLogo{
    width: 40%;
  }




} 

@media only screen and (max-width: 450px){

  header .logo {
    max-width: 150px;
    

  }
  .projects{
    min-height: 300px;
    width: 90%;
    
  }
  .projectLogo {
    margin-bottom: 20px;
  }
  }
  .projects p{
    font-size: 16px;
  }
  #title{
    font-size: 25px;
  }

  .hero h1 {
    font-size: 30px;
  }


@media only screen and (max-width: 380px){

  header .logo {
    max-width: 150px;
    

  }
  #title{
    font-size: 25px;
  }

  .hero h1 {
    font-size: 30px;
  }
  .projects{
    min-height: 300px;
    width: 90%;
    
  }








} 
  