html, body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url('/img/bg-img.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
}

.message {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background-color: rgba(255,255,255,0.9);
}

.logo {
    margin: 100px auto 50px;
    width: 200px;
    height: auto;
}

.logo img {
    width: 100%;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /*padding: 50px 150px;*/
    text-align: center;
    font-size: 30px;
}

.text p {
    margin-top: 0;
    margin-bottom: 50px;
}