@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  height: 100vh;
  background-size: 400%;
}
#error-page{
  position: absolute;
  top: 10%;
  left: 15%;
  right: 15%;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}
#error-page .content{
  max-width: 600px;
  text-align: center;
}

.content h4{
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
  font-size: 2em;
  max-width: 600px;
  position: relative;
}

.content p{
  font-size: 1em;
  color: #0d0d0d;
}
.content .btns{
  margin: 25px 0;
  display: inline-flex;
}
.content .btns a{
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  background-color: #364c80;
  color: white;
  font-weight: 500;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.content .btns a:hover{
  background-color: #2d3f6a;
  box-shadow: 0 2px 10px rgba(54, 76, 128, 0.35);
}
.content .logoImg{
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 220px;
  height: auto;
}
.content .error-code{
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 700;
  color: #364c80;
  line-height: 1;
  margin: 0 0 0.35em;
  letter-spacing: 0.04em;
}
.content .error-lead{
  font-size: 1em;
  color: #3d3d3d;
  line-height: 1.65;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
