*{
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}
a{
    color: white;
    text-decoration: none;
}
body{
    margin: 0;
    padding:0;
}
.wrapper{
    background: url('https://dl.dropboxusercontent.com/s/o9e3uxuoqv6i4ej/background.jpg');
    background-size: cover;
    background-position: center;
    padding:30px;
    min-height: 100vh;
}
.container{
    margin:auto;
    max-width:400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.container h1{
    font-size: 20px;
    font-weight: 500;
    /* text-shadow: 0 0 15px rgba(20, 0, 0, .5); */
}
.container .image{
    width:250px;
}
.container p.checksoon{
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    /* text-shadow: 0 0 2px rgba(20, 0, 0, .5); */
}
.container .logo{
    /* background: rgba(255, 255, 255, .8); */
    padding: 20px;
    width: 140px;
}
.container .logo img{
    /* background: rgba(255, 255, 255, .8); */
    width: 100%;
}
@media (max-width: 576px){
    .container .image{
        width:200px;
    }
    .container .logo{
        width: 200px;
    }
}