* {
  box-sizing: border-box;
}

body {
  background-color: lightcyan;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
}

.container{
  background-color: lightcyan;
  width:100%;
  height: 500px;
  margin-top: 30px;
  border-radius: 30px;
}

.box {
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  width: auto;
  height: 50px;
  margin: 5px;
  border-radius: 10px;
  box-shadow: 3px 6px 6px rgba(0, 0, 0, 0.3);
  border-style: solid;
}

.box h3{
  margin: 3px;  
}

hr{
  margin-left: 15px;
  margin-right: 15px;
}

.back{
  justify-content: center;
  align-items: center;
  display: flex;
  height: 75px;
  background-color: white;
  margin: 15px;
  border-radius: 10px;
  border-style: solid;
  margin-top: 10px;
}

.carne{
  display: inline;
  flex-flow: nowrap;
  background-color: blueviolet;
  width: 330px;
  height: 420px;
}

.img{
  width: 290px;
  height: 290px;
  margin-top: 20px;
}

.cabecalho{
  background-color: slateblue;
  width:100%;
  height: calc(25vh + 10vw);
  border-radius: 25px;
}

.cabecalho p{
  font-size: calc(4vh + 8vw);
  padding-top: calc(12vh - 10vw);
}

.info{
  margin-top: 5px;
  border-radius: 25px;
  border-style: solid;
}

.credits {
  background-color: #3d3d3d;
  padding: 0px;
  margin: 0px;
  width: 100%;
}

p.footer {
  margin: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: white;
}

.Peixe{
  margin-bottom: 50px;
}