.container404{
    width: 70%;
    min-height: 85vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: calc(2rem + 0.5vw);
}
.title404{
    width: 50%;
    margin: 20px 0;
    font-size: calc(2rem + 1.5vw);
    font-weight: 600;
}
.link404{
    font-size: calc(1.3rem);
    color: #f93839;
    transition: 0.2s;
    cursor: pointer;
}
.link404:hover{
    color: #000;
}
/* Extra large devices (large laptops and desktops, 1200px) */
@media only screen and (max-width: 1370px) {
    .title404{
        width: 70%;
    }
}

/* Large devices (laptops/desktops, 992px) */
@media only screen and (max-width: 992px) {
    .title404{
        width: 90%;
    }
}
/* Medium devices (landscape tablets, 768pxp) */
@media only screen and (max-width: 768px) {}

/* Small devices (portrait tablets and large phones, 600px) */
@media only screen and (max-width: 600px) {}


