.container {
    height: calc(100vh);
    align-items: center;
    justify-content: center;
}

.content-left {
    display: flex;
    flex-direction: column;
}

.error-code {
    font-size: 72px;
    font-weight: 600;
}

.error-msg {
    font-size: 20px;
}

.app-button {
    width: 160px;
    border-radius: 20px;
    margin-top: 20px;
}

.content-right {
    margin-left: 80px;
}

@media (max-width:480px){
    .container {
        flex-direction: column-reverse;
    }

    .content-left {
        margin-top: 20px;
        align-items: center;
    }

    .content-right {
        width: 240px;
        margin-left: unset;
    }

    .content-right img {
        width: 100%;
    }
}
