body {
    background-color: #133B5C;
}

.not-found {
    color: white;
    width: 50%;
    max-width: 960px;
    margin: 100px auto;
}

.not-found-title {
    display: flex;
    align-items: center;
    justify-content: start;
}

.not-found-title img {
    width: 256px;
    height: 256px;
}

.not-found-title h1 {
    margin: 0 10px;
    font-size: 3rem;
}

.not-found-title p {
    text-align: center;
    font-size: 1.2rem;
}

@media only screen and (max-width: 1200px) {
    .not-found {
        width: 70%;
    }
}

@media only screen and (max-width: 900px) {
    .not-found {
        width: 90%;
    }
}

@media only screen and (max-width: 700px) {
    .not-found-title {
        display: block;
        text-align: center;
    }

    html {
        font-size: 12px;
    }
}