.page404{
    padding: 200px 13% 100px 13%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 80vh;
}

.page404 h1{
    font-size: 119px;
    line-height: 119px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-align: center;
}

.page404 h2{
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 200;
    margin-bottom: 30px;
    text-align: center;
}


@media (max-width: 992px){
    .page404 h1{
        font-size: 80px;
        line-height: 80px;
    }
    
    .page404 h2{
        font-size: 30px;
        line-height: 30px;
    } 
}


@media (max-width: 600px){
    .page404{
        padding: 140px 36px 70px 36px;
    }
    
    .page404 h1{
        font-size: 60px;
        line-height: 60px;
    }
    
    .page404 h2{
        font-size: 30px;
        line-height: 30px;
    } 
    .page404 .btn{
        padding: 10px 20px;
    }
}