body {
    background-color: rgb(10, 128, 67);
}

a{
    text-decoration: none;
}

.errorpage-wrap{
    background-color: rgb(255, 255, 255);
    color: rgb(34, 34, 34);
    padding: 120px 0 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 -2px 11px rgba(0, 0, 0, 0.9);
}

@media(min-width:768px) {
    .errorpage-wrap{
        text-align: left;
    }
}

.oops{
    font-size: 30px;
    display: block;
    margin: 0 0 60px;
}

.lost{
    font-size: 25px;
}

.errorpage-wrap h1 {
    margin-top: 20px;
}

.lost a {
    background-color: rgb(10, 128, 67);    
    color: rgb(255, 255, 255);
    font-size: 14px;
    padding: 10px 30px;
    border: 1px solid rgb(10, 128, 67);
    border-radius: 3px;
    margin-top: 10px;
    text-decoration: none;
}

.lost a:hover {
    color: rgb(10, 128, 67);
}

@media(min-width:768px) {
    .lost a {
        margin-top: 0;
        margin-left: 30px; 
    }
}

/*Buttons Sweep To Right */
.hvr-sweep-to-right-error {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right-error:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(255, 255, 255);  
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right-error:hover, .hvr-sweep-to-right-error:focus, .hvr-sweep-to-right-error:active {
  color: white;
}
.hvr-sweep-to-right-error:hover:before, .hvr-sweep-to-right-error:focus:before, .hvr-sweep-to-right-error:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}