.container-erro {
  background-color: white;
}

.caixa-erro {
  max-width: 700px;
  margin: 0px auto;
  padding: 10px;
  height: 100vh;
}

.codigo-erro {
  font-size: 60px;
  font-weight: bold;
  color: gray;
}

.titulo-erro {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
}

.erro-interno {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
}

.erro-interno h1 {
  text-align: center;
  font-size: 40px;
  color: #ee5757;
}

.mensagem-erro {
  text-align: center;
  font-size: 20px;
  margin: 10px 30px;
}

.caixa-botao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tentar-novamente {
  background-color: #2980b9;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.911);
  padding: 10px;
  border: none;
  font-family: "Times New Roman", Times, serif;
  border-radius: 2px;
  display: block;
  width: 200px;
  text-align: center;
  margin-top: 30px;
  margin-left: 12px;
  margin-bottom: 30px;
}

.tentar-novamente:hover {
  background-color: #0c649e;
}

.tentar-novamente:active {
  text-decoration: none;
  color: #ee5757;
}

.titulo-erro img {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .caixa-erro {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }
  .titulo-erro {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .titulo-erro img {
    margin-top: 30px;
    max-width: 500px;
  }

  .caixa-botao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tentar-novamente {
    margin-left: 0px;
  }
}

@media (max-width: 700px) {
  body {
    height: 100%;
  }
  .container-erro {
    height: 100vh;
  }
  .tentar-novamente {
    width: 100%;
    max-width: 70%;
  }
  .caixa-erro {
    box-sizing: border-box;
    height: max-content;
  }
}

@media (max-width: 460px) {
  .container-erro {
    height: 100vh;
  }
}
