* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }
  
  h1 {
    font-family:'Noto Serif Tamil', serif;;
    text-align: center;
    font-size: 45px;
    color: antiquewhite;
  }
  
  .image{
    width: 440px;
    height: 295px;
    margin: 10px;
  }
  
  img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: all 1s;
  }
  
  img:hover {
    transform: scale(1.05);
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  
  } 



