* {
    box-sizing: border-box;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
    margin: auto;
    color: azure;
  }
body {
    
    background-color: #242628;
    
}
.container {
  background-image: url(./world.svg); 
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 70px;
  background-origin: padding-box;
}
section{
    height: 50vh;    
    display: flex;
    justify-content: center;
    align-items: center;
}
section div { 
    
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    grid-template-rows: repeat(3, 1fr);
    display: flex;
    flex-direction: column;   
    gap: 1rem;    
    justify-content: center;
    align-items: center;
}
h1{
    font-size: 2rem;
    color:  #fbab40;
}

