body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
    min-height: 100vh;
    background-image: url('./assets/images/BG.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/RobotoCondensed-Regular.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/RobotoCondensed-Bold.ttf');
    font-weight: 600;
}

.flex-center {}

h1 {
    text-align: center;
}

.logo {
    max-width: 90%;
}

h2 {
    text-align: center;
    font-size: 55px;
    text-transform: uppercase;
    margin: 15px 0;
}

.info {
    text-align: center;
}

.item {
    margin: 10px 0;
}

.item strong {}

.item a {
    color: #fff;
    text-decoration: none;
}

.item span {}

.item .blue {
    color: #6295e9;
}

@media (min-width: 768px) {
    .flex-center {}
    h1 {}
    .logo {
        max-width: none;
    }
    h2 {
        font-size: 110px;
        margin: 20px 0;
    }
    .info {
        font-size: 20px;
    }
    .item {}
    .item strong {}
    .item a {}
    .item span {}
}