@charset "UTF-8";



@media (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;

  }

  header .logo {
  
  font-family: var(--font-family1);
  font-size: 1.8rem;
  margin-bottom: 10px;
}
  .content > div {

    width: 400px;   
    height: 480px;  
    box-sizing: border-box;

  }
  


  .content {

    display:flex;
    justify-content:center;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 15px;
    padding: 8px 0;
    
     
    
  }

   .image-block {
    width: 100%;
   height: 480px;
  border-radius: 8px;
  object-fit: cover;
  }

  .text-block {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-align: center;
    
    
  }

  .text-block h2 {
    font-size: 28px;
    padding-bottom: 40px;
  }

 


}

@media (min-width: 1200px) {

  header {
    padding: 40px 40px;

  }

  .content {
    flex-direction: row; 
    text-align: center;
    align-items: stretch;
  }

  

 }