/*.mainContainer {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}*/
/*@media screen and (min-width: 1152px) {
    .mainContainer {
        display: block;
        width: 1152px;
        margin-left: auto;
        margin-right: auto;
    }
}*/
body {
    /*background: #000;
    color: #fff;*/
    /*height: 100%;
    margin: 0;
    padding: 0;*/

    /*background-image: url('logo.svg');
    background-size: cover;*/
    background-image: linear-gradient(to bottom right, #a8b1c2, #2a5298);
    background-size: cover;
    background-size: cover;
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    height: 100vh;
    overflow: hidden;

}

.content {
    /*position: relative;*/
    z-index: 1;
    filter: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Ensures content is not blurred */
}

.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    bottom: 0;
    background: url('logo.png') no-repeat center center;
    background-size: contain;
    filter: blur(3px);

    z-index: -1;

}

.video-container {
    /*position: absolute;*/
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/*.video-container:before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: 56.25%;
}*/

/*.video-container > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}*/

.video-container video {
    min-width: 100%;
    min-height: 100%;

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: 100%;
    height: 100%;

    /* Center the video */
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);*/
}

/*.urlInput {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    margin-bottom: 8px;
}

.centeredVideo {
    display: block;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
}

.controls {
    display: block;
    width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
    margin-bottom: 10px;
}

.logcatBox {
    border-color: #CCCCCC;
    font-size: 11px;
    font-family: Menlo, Consolas, monospace;
    display: block;
    width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.url-input , .options {
    font-size: 13px;
}

.url-input {
    display: flex;
}

.url-input label {
    flex: initial;
}

.url-input input {
    flex: auto;
    margin-left: 8px;
}

.url-input button {
    flex: initial;
    margin-left: 8px;
}

.options {
    margin-top: 5px;
}*/

.hidden {
    display: none;
}

.visualizer-container {
    position: absolute;

    bottom: 50px;
    right: 0;
    left: 0;

    text-align: center;
}

.visualizer-container__bar {

    display: inline-block;

    margin: 0 2px;
    width: 25px;
    background-image: linear-gradient(to bottom right, #ffffff, #dee2e8);
    background-size: cover;
    background-size: cover;

}