.sp_error_cap{
  position: absolute;
  width: 600px; 
  height: auto;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: white; 
  font-family: Metropolis-L;
  font-size: 60px;
  text-align: center;
}

.sp_error_cap b{
  font-family: Metropolis-SB;
  font-size: 120px;
}

#icon_error_404{
    position: absolute;
    width: 30px;
    height: auto;
    left: 50%;
    top: 60px;
    transform: translate(-50%,-50%);
    opacity: 0.3;
}

#back_home_404{
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    height: 65px;
    background-color: #212121;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s ease-in-out;
}

#back_home_404:hover{
    background-color: #112e35;
}

#back_home_404:active{
    background-color: #03657e;
}


#back_home_404 img{
    height: 30px;
    width: auto;
    padding-left: 15px;
    padding-right: 15px;
}

#back_home_404 p{
    height: auto;
    width: auto;
    font-size: 20px;
    font-family: Metropolis-M;
    color: white;
}

@media screen and (max-width: 750px){
    .sp_error_cap{
        width: 400px;
        font-size: 35px;
      }
      
      .sp_error_cap b{
        font-size: 75px;
      }
      
      #icon_error_404{
          position: absolute;
          width: 30px;
          height: auto;
          left: 50%;
          top: 60px;
          transform: translate(-50%,-50%);
          opacity: 0.3;
      }
      
      #back_home_404{
          position: absolute;
          top: 75%;
          left: 50%;
          transform: translate(-50%,-50%);
          width: 300px;
          height: 65px;
          background-color: #212121;
          border-radius: 15px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          transition: 0.2s ease-in-out;
      }
      
      #back_home_404:hover{
          background-color: #112e35;
      }
      
      #back_home_404:active{
          background-color: #03657e;
      }
      
      
      #back_home_404 img{
          height: 30px;
          width: auto;
          padding-left: 15px;
          padding-right: 15px;
      }
      
      #back_home_404 p{
          height: auto;
          width: auto;
          font-size: 20px;
          font-family: Metropolis-M;
          color: white;
      }
}