* {
  padding: 0;
  margin: 0;
	box-sizing: border-box;
}

body {
  display: grid;
  min-height: 100vh;
  grid-template-rows:  auto 1fr auto;
}

footer {
  background-color: red;

}

main {
  background-color: blue;
  display: grid;
  min-width: 100%;
  grid-template-columns: auto 1fr auto;
}

.carrusel {
  min-height: 100vh;
  grid-template-rows:  auto 1fr;
}

.carrusel div {
  display: flex;
  justify-content: center;
}

header {
  background-color: green;
}
