* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url("../../../Images/background.jpg");
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  font-family: "Bubblegum Sans", cursive;
  align-items: center;
}
body:hover {
  cursor: default;
}
.introFase1 {
  margin: 50px;
  width: 60%;
  background-color: rgba(221, 180, 127, 0.767);
  border: rgb(0, 0, 0) 3px dashed;
  border-radius: 20px;
  padding: 20px;
  font-size: 22px;
}
.introFase1 img {
  height: 220px;
  float: left;
  border-radius: 20px;
  margin-right: 20px;
}
.posicionandoNavios {
  background-color: rgba(221, 180, 127, 0.767);
  border: rgb(0, 0, 0) 3px dashed;
  border-radius: 20px;
  padding: 20px;
  width: 60%;
}
.Navio1 p,
.Navio2 p,
.Navio3 p {
  padding: 10px 0;
  font-size: 25px;
}
.posicoes1,
.posicoes2,
.posicoes3 {
  display: flex;
  justify-content: space-evenly;
}
.posicoes1 p,
.posicoes2 p,
.posicoes3 p {
  display: flex;
}
.posicoes1 img,
.posicoes2 img,
.posicoes3 img {
  width: 150px;
}

.dialogo {
  margin: 50px;
  width: 60%;
  background-color: rgba(221, 180, 127, 0.767);
  border: rgb(0, 0, 0) 3px dashed;
  border-radius: 20px;
  padding: 20px;
  font-size: 30px;
}
.dialogo img {
  height: 100px;
  float: right;
  border-radius: 20px;
}
.dialogo button {
  font-family: "Bubblegum Sans", cursive;
  background: radial-gradient(
    circle,
    rgba(226, 233, 148, 0.9) 0%,
    rgba(251, 167, 62, 0.9) 100%
  );
  border: rgb(0, 0, 0) solid;
  padding: 10px;
  font-size: 20px;
}
.botoes {
  margin-top: 15px;
  display: flex;
  justify-content: space-evenly;
}
.selecionar {
  transition: all 0.5s;
}
.selecionar:hover {
  color: bisque;
  border-color: bisque;
}
.concluir {
  transition: all 0.5s;
}
.concluir:hover {
  color: green;
  border-color: green;
}
@media (max-width: 900px) {
  .posicoes1 img,
  .posicoes2 img,
  .posicoes3 img {
    width: 100px;
  }
}
@media (max-width: 660px) {
  p {
    font-size: 18px;
  }
  .Navio1 p,
  .Navio2 p,
  .Navio3 p {
    font-size: 18px;
  }
  .dialogo button {
    padding: 5px;
    font-size: 15px;
  }
}
@media (max-width: 620px) {
  .introFase1 img {
    height: 150px;
  }
  .posicoes1 img,
  .posicoes2 img,
  .posicoes3 img {
    width: 60px;
  }
}
@media (max-width: 540px) {
  .dialogo button {
    padding: 2px;
    font-size: 10px;
  }
}
@media (max-width: 460px) {
  .introFase1 img {
    height: 100px;
  }
}
@media (max-width: 400px) {
  .posicoes1,
  .posicoes2,
  .posicoes3 {
    display: flex;
    flex-direction: column;
  }
}
