@charset "utf-8"; /* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap'); html, body {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

p {
    margin: 0 0 15px;
    text-align: center;
}

body {
    background-color: #000;
}

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

.container img {
    max-width: 100%;
}

.soon {
    background-color:  #fff;
    padding:  10px 20px;
}

.logo {
    width: clamp(0px, calc(100% - 20px), 577px);
}