#error404{
    max-width: 100%;
    width: 500px;
    margin: 100px auto;
    text-align: center;
    padding: 0 20px;
}

#error404 h1{
    font-size: 120px;
    line-height: 120px;
    color: var(--black-color);
}

#error404 h2{
    font-size: 28px;
    color: var(--black-color);
}

#error404 h2 span{
    color: var(--main-color);
}

#error404 p{
    font-size: 16px;
}

#error404 button{
    max-width: 100%;
    width: 300px;
    margin: 20px 0;
    height: 40px;
    border: none;
    color: var(--white-color);
    background: var(--main-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all ease 0.3s;
}

#error404 button:hover{
    transform: scale(0.98);
}

@media (max-width: 750px) {
    #error404 h1{
        font-size: 100px;
    }
    #error404 h2{
        font-size: 20px;
    }
    #error404 p{
        font-size: 15px;
    }
    #error404 button{
        cursor: default;
    }
}