html {
    height: 100%;
    overflow: hidden;
    background-color: black;
}
body {
    display: flex;
    flex: 1;
    height: 100%;
    margin: 0;
}
.container {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-image: linear-gradient(#24272B 0%, #000000 84.9%);
    align-items: center;
}
.logo-container {
    margin-top: 60px;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
}
.logo {
    max-width: 310px;
    width: 100%;
    height: auto;
}
.center-wrapper {
    position: relative;
    display: flex;
    align-self: stretch;
    flex: 1;
    align-items: center;
    justify-content: center;
}
@keyframes flickerAnimation {
    0%   { opacity:1; }
    50%  { opacity:0.4; }
    100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.4; }
    100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.4; }
    100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0.4; }
    100% { opacity:1; }
}
.line {
    position: absolute;
    width: 100%;
    height: auto;
    -webkit-animation: flickerAnimation 3s infinite;
    -moz-animation: flickerAnimation 3s infinite;
    -o-animation: flickerAnimation 3s infinite;
    animation: flickerAnimation 3s infinite;
}
.soon-container {
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}
.soon {
    align-self: center;
    max-width: 459px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

@media only screen and (max-width: 600px) {
    .line {
        width: 130%;
    }
}
