/*---------Шрифты------------*/
@font-face{
    font-family: 'Futura-Pt';
    font-weight: 400;
    src: url('/fonts/Futura400.woff'),
         url('/fonts/Futura400.woff2');
}

/*---------Обнуление------------*/
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

p {
    font-size: inherit;
	font-weight: inherit;
}

img {
	vertical-align: top;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    font-family: 'Futura-Pt';
    font-weight: 400;
}

/*-------------Стили--------------*/
.not_found {
    max-width: 100%;
    padding: 100px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.not_found_container {
    margin: auto;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

img {
    width: 100%;
    flex: 1;
    min-width: 200px;
    max-width: 500px;
}

p {
    white-space: nowrap;
    font-size: calc(30px + 25 * .0520833333vw);
}

@media screen and (max-width: 768px){
    .not_found .not_found_container {
        flex-direction: column;
    }

    img {
        max-width: 250px;
    }

    p {
        font-size: calc(30px + 42.5 * (100vw - 320px) / 1920);
        color: #000;
    }
}