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

body {
  height: 100%;
  width: 100%;
  position: relative;
  padding: 1em;
  background-color: silver;
  font-size: 100%;
}

.Exo-MessageErreur500 {
  margin: 0 auto;
  position: relative;
  width: 50%;
  min-width: 450px;
  background-color: #0077c0;
  color: #FFF;
  text-align: center;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
}

/*.Exo-MessageErreur500::after {
    content:"!";
    background-color: #FFF;
    width: 100px;
    height:100px;
    transform: rotate(45deg);
    color: red;
    position: absolute;
    top: -50px;
    right: -50px;
}*/
.Exo-MessageErreur500-Titre {
  margin-top: 0px;
  line-height: 10rem;
  font-family: "Inconsolata", monospace;
  font-size: 5rem;
  font-weight: normal;
}

.Exo-MessageErreur500-Texte {
  line-height: 2rem;
  min-height: 6rem;
  padding: 0 1rem;
  font-family: "Inconsolata", monospace;
}

.Exo-MessageErreur500-Actions {
  list-style: none;
  overflow: hidden;
}

.Exo-MessageErreur500-ActionsRetour {
  float: left;
}

.Exo-MessageErreur500-ActionsAccueil {
  float: right;
}

.Exo-MessageErreur500-ActionsRetourLien, .Exo-MessageErreur500-ActionsAccueilLien {
  display: block;
  background-color: #FFF;
  color: #0077c0;
  padding: 0 0.5em;
  line-height: 2rem;
  text-decoration: none;
  font-family: "Inconsolata", monospace;
}

.Exo-Logo {
  margin: 2rem auto 1rem auto;
  text-align: center;
  width: 40%;
}
.Exo-Logo img {
  max-width: 100%;
}

@media only screen and (min-height: 600px) {
  .Exo-MessageErreur500 {
    top: 50%;
    margin-top: -10rem;
  }

  .Exo-Logo {
    margin-bottom: 11rem;
    position: absolute;
    bottom: 50%;
    left: 30%;
    right: 30%;
  }
}
