/** 
 *------------------------------------------------------------------------------
 * JA BLOCKK TPL
 *------------------------------------------------------------------------------
 * @copyright     Copyright (C) 2004-2016 JoomlArt.com. All Rights Reserved.
 * @license       GNU General Public License version 2 or later; see LICENSE.txt
 * @authors       JoomlArt
 *------------------------------------------------------------------------------
**/

/* MAIN STYLE
---------------------*/
html {
  font-size: 15px;
}

* {
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #616161;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  position: relative;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* OutLine */
#outline {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#errorboxoutline {
  margin: 0 auto;
  max-width: 544px;
}

/* Eror Code */
.error-code {
  color: #212121;
  display: inline-block;
  font-size: 192px;
  font-weight: 700;
  font-family: 'Source Serif Pro', serif;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}


/* Message Error */
.error-message {
}

/* Message Error */
.error-message h2 {
  color: #212121;
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Source Serif Pro', serif;
  line-height: 32px;
  margin-bottom: 16px;
  margin-top: 0;
  position: relative;
}

.error-message h2 span {
  position: relative;
  z-index: 3;
}


#errorboxbody p {
  display: block;
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 64px;
  z-index: 3;
  position: relative;
}

/* Button Home */
.button-home {
  background: #DB3334;
  border: none;
  color: #fff;
  border-radius: none;
  display: inline-block;
  padding: 11px 32px;
  font-size: 14px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0.02rem;
  height: 64px;
  text-decoration: none;
  text-transform: uppercase;
}


.button-home:hover,
.button-home:focus,
.button-home:active {
  opacity: 0.85;
}

/*Mobile view*/
@media (max-width: 767px){
  /* OutLine */
  #outline {
  }

  /* Eror Code */
  .error-code {
    font-size: 8rem;
  }

  /* Message Error */
  .error-message h2 {
    font-size: 32px;
  }

  #errorboxbody p {
    margin-bottom: 20px;
  }
}