body {
    background: #000000;
}

.notfound {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/common/default-bg.svg') no-repeat 0 0;
    background-size: cover;
    background-position: top center; 
}

.notfound .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.notfound .logo {
    width: 467px;
    height: 220px;
    background: url('../img/common/404.svg') no-repeat 0 0;
    background-size: contain;
    margin-bottom: 30px;
}

.notfound h1 {
    font-family: 'Nexa Bold';
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 20px;
}

.notfound p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

@media (max-width: 480px) {
    .notfound .container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .notfound .logo {
        width: 309px;
        height: 147px;
        margin-bottom: 20px;
    }

    .notfound h1 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .notfound p {
        font-size: 14px;
    }
}