@font-face {
    font-family: Roboto-Regular;
    src: url('../assets/Roboto/Roboto-Regular.ttf')
}

body {
    width:100%;
    min-height:100%;
    margin:0px;
    padding:0px;
    background-color: #E0E0E0;
    font-family: Roboto-Regular !important;
}

.body {
    height: 100vh;
    background-color: #FFF;
  }

.logojs{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    margin-top: 10px;
}
.conteinerjs {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}
.conteinerjs > img {
    width: 40%;
    max-width: 300px;
}
.contentjs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    margin-left: 20px;
    line-height: 1.3em;
}
.contentjs > h1 {
    color: #484848;
    font-size: 4em;
    line-height: 1.1em;
    text-align: center;
}
.contentjs > p {
    margin:0;
    text-align: center;
    color: #484848;
}
@media screen and (max-width: 600px) {
    .conteinerjs {
        flex-direction: column-reverse;
    }
    .contentjs > h1 {
        font-size: 2.3em;
    }
    .contentjs {
        width: 86%;
    }
    .conteinerjs > img {
        width: 250px;
        max-width: 300px;
    }
}