@font-face {
  font-family: babasNeue;
  src: url(../fonts/BebasNeue-Regular.ttf);
}

body {
    background-color: #243044;
    display: flex;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
}

span {
    font-family: babasNeue;
    font-size: 56px;
    color: #8B9EBD;
    text-align: center;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width:35%;
}
.inner {
    position: absolute;
}

.logo{
    margin-bottom: 35px;
}

@media only screen and (max-width: 600px) {
    .logo {
        height: 320px;
        max-height: 343px;
    }

    span {
        white-space: nowrap;
        font-size: 40px;
    }
} 