body,
app-root {
    height: 100%;
    margin: 0;
}

@font-face {
  font-family: Roboto-Regular;
  src: url(../fonts/Roboto/Roboto-Regular.woff2) format("woff2"),
    url(../fonts/Roboto/Roboto-Regular.woff) format("woff");
  font-display: swap;
}

h1,
h2,
h3,
p {
    line-height: 1.5;
    font-family: Roboto-Regular;
}

/*flex*/

.column {
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
}

.center {
    place-content: center;
    align-items: center;
}

.fx-flex {
    flex: 1 1 1;
}

.container-not-found {
    margin: auto;
    background-color: #000;
    min-height: calc(100vh);
    color: #fff;
}

.title-coming-soon {
    text-align: center;
    text-transform: uppercase;
}

.slogan-coming-soon {
    text-align: center;
}

.mat-card-image-404 {
    width: 20em;
}

@media (min-width: 1280px) {

    .title-coming-soon {
        font-size: 40px;
    }

    .slogan-coming-soon {
        font-size: 35px;
        text-align: center;
    }
}


@media (min-width:778px) and (max-width:1289px) {
    .mat-card-image-404 {
        width: 18em;
    }

    .slogan-coming-soon {
        font-size: 33px;
    }
}

@media (max-width: 1279px) {
    .title-coming-soon {
        font-size: 30px
    }

    .slogan-coming-soon {
        font-size: 25px;
    }

    .mat-card-image-404 {
        width: 15em;
    }
}