
body{
    background-image: url(https://i.pinimg.com/736x/6c/3a/3d/6c3a3d96b4b025cd347fa52df4658136.jpg);
    display: flex;
    background-attachment: fixed;

   
}

.container {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr ;
  grid-template-columns: 1fr 1fr 1fr ;
  
}

.item1 {

grid-area: 1/ 2 ;
}

.item2 {
  grid-column: 1 / span 3 ;
  text-align: center; 
  font-family: sans-serif;
  text-decoration-line: underline;
  text-decoration-style: dotted; 
   text-shadow: 2px 2px lightseagreen ; 
  
  
}

.item3 {
 text-align: center;
}