body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: #999;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 400px;
  height: 100%;
  
  display: flex;
  flex-direction: column;
  
  padding: 20px;
  box-sizing: border-box;
  
  justify-content: flex-start;
  
  
}

.linha {
  display: flex;
  gap: 20px;
  flex: 1;
  
  
  justify-content: center;
  
  
}

.linha2 {
  display: flex;
  gap: 20px;
  flex: 1;
  border: 1px solid black;
  
  justify-content: center;
  
}




.negrito{
    font-family: Arial, Helvetica, sans-serif;
    font-weight:bold;
}





.box {
  width: 200px;  
  overflow: hidden;
  align-content: center;
  

}

.box img{
 width: 100%;
 height: 100%; 
 object-fit: cover;
}


/* caixa do meio ocupa tudo */
.grande {
  flex: 1;
  
  background-color:rgb(255, 238, 143)

  
}

.box p{
    text-align: center;
}

