@font-face {
    font-family: 'bebas_neue_regularregular';
    src: url('../fonts/bebasneue_regular-webfont.eot');
    src: url('../fonts/bebasneue_regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bebasneue_regular-webfont.woff2') format('woff2'),
    url('../fonts/bebasneue_regular-webfont.woff') format('woff'),
    url('../fonts/bebasneue_regular-webfont.ttf') format('truetype'),
    url('../fonts/bebasneue_regular-webfont.svg#bebas_neue_regularregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    background-color: #000;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-image: url("../img/io_background.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;

    font-family: bebas_neue_regularregular;
    color: #ffffff;
    line-height: 1;
}

* {
    box-sizing: border-box
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
}

.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text {
    display: block;
    font-size: 150px;
    margin-top: 0;
    margin-bottom: 20px;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .text {
        font-size: 75px;
    }
}

.text span {
    color: #ec6c00;
}

.site_url {
    display: inline-block;
    background-color: #ec6c00;
    font-size: 75px;
    padding: 10px 20px;
    margin-top: 0;
    margin-bottom: 0px;
    min-width: 100%;
    text-wrap: normal;
    word-break: break-all;
}

@media (max-width: 700px) {
    .site_url {
        font-size: 37px;
    }
}

.logo {
    margin-left: 5%;
    background-color: #ec6c00;
    display: inline-block;
    width: 10%;
    height: auto;
    text-align: center;
    padding: 20px;
    min-width: 100px;
    max-width: 180px;
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}