* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
  padding: 40px 0 0;
}

.page-not-found {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100dvh - 120px);
}

.page-not-found__wrap {
    position: relative;
    max-width: 270px;
    margin: 0 auto;
    text-align: center
}

.page-not-found__title {
    font-weight: 700;
    font-size: clamp(28px, 8vw, 72px);
    text-transform: uppercase;
    color: #202020;
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
}

.page-not-found__content {
    font-family: "Roboto", sans-serif;
    line-height: 1.4;
    font-weight: 400;
    font-size: clamp(16px, 4vw, 36px);
    color: #343434;
    text-align: center;
}
