* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;

  background-color: rgb(156, 190, 70);
  border: 2px solid rgb(211, 183, 71);
  width: 600px;
  height: 500px;
}

.box {
  width: 40%;
  height: 100px;
  background-color: rgb(255, 72, 0);
  border: 2px solid rgb(130, 201, 234);
  border-radius: 5px;
}

/* Estilos header */

header {
  background-color: rgb(105, 173, 150);
  display: flex;
  padding: 20px;
  justify-content: space-between;
}

main {
  display: flex;
  gap: 20px;
}
.main-content {
  width: 70%;
  height: 300px;
  background-color: rgb(81, 241, 67);
}
.statistics {
  width: 30%;
  height: 300px;
  background-color:rgb(22, 194, 137);
}