@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

body {
    background-image: url("../images/background.jpg");
    background-size: cover;
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0;
}
img {
    position: absolute;
    max-width: 250px;
    width: 80%;
    min-width: 250px;
    top: 21%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255, 1);
    padding: 15px;
    border-radius: 15px;
}

.message {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 20px 10px rgba(200,200,200,0.3);
    width: 100vw;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px 0;
}

.text {
    white-space: nowrap;
}

.text {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    color: #3A464E;
    font-size: 1.5vw;
    line-height: 2vw;
    display: flex;
    flex-direction: row;
    font-weight: 100;
    justify-content: center;
}

.text.condensed {
    font-family: 'Open Sans', sans-serif;
    font-size: 3vw;
    line-height: 3.2vw;
}

.text.bold {
    display: none;
    font-weight: 700;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1100px) {
    .text {
        line-height: 3.5vw;
        font-size: 3vw;
    }
}
