@import "helvetica/style.css";

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2') format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Helvetica';
    color: #fff;
    background-color: black;
    height: 100%;
}

#oldCode {
    visibility: hidden;
}

.hide#streamer {
    width: 0;
    height: 0;
    transform: scale(0);
    opacity: 0;
}

.container,
.row {
    height: 100%;
}

#streamer {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scale(1);
    opacity: 1;
    transition: all 1.5s ease;
}

#streamer video {
    width: 100%;
    height: 100%;
}

#streamer img {
    opacity: .9;
    position: absolute;
    top: 5%;
    left: 5%;
    height: 10%;
}

#closeStreamer {
    opacity: .5;
    position: absolute;
    bottom: 5%;
    right: 5%;
}

#closeStreamer i {
    transform: rotateZ(45deg);
}

.oclea {
    height: 100%;
    display: grid;
    grid-template-rows: repeat(10, 1fr);
    grid-auto-columns: auto;
}


.logo {
    width: 100%;
    grid-column: 1;
    grid-row: 1 / 7;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.text {
    grid-column: 1;
    grid-row: 8 / 10;
    text-align: center;
    line-height: 1.5;
}

.text .sub_title {
    font-size: 2em;
}

.text .title {
    font-size: 3em;
}


/*****************************************
*                                         *
*              On Mobiles                 *
*                                         *
 *****************************************/

/* portrait */
@media (max-width: 991px) and (orientation: portrait) {
    #streamer img {
        top: 38%;
        height: 34px;
    }

    .logo {
        grid-row: 2 / 6;
    }

    .text {
        grid-row: 7 / 9;
    }

    .text .sub_title {
        font-size: 1.5em;
    }
}

/* landscap */
@media (max-width: 991px) and (orientation: landscape) {
    #streamer img {
        top: 6%;
        left: 10%;
        height: 15%;
    }

    .oclea {
        grid-template-rows: 1fr;
        grid-template-columns: repeat(10, 1fr);
    }

    .logo {
        grid-row: 1;
        grid-column: 1 / 7;
        border: none;
        border-right: 1px solid rgba(255, 255, 255, .2);
    }

    .text {
        grid-row: 1;
        grid-column: 8 / 10;
        align-self: center;
    }

    .text .sub_title {
        font-size: 1.5em;
    }

    .text .title {
        font-size: 3em;
    }

}