html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: url("assets/background.png") no-repeat;
    background-size: cover;
}
.container {
    position: relative;
    height: 50vh;
    margin-top: 30vh;
    background: rgba(0, 110, 150, 0.8);
}
.logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    max-width: 100%;
}
.logo img{
    width: 100%;
}
.image {
    text-align: center;
    padding: 12px;
}
.image img {
    max-width: 100%;
    max-height: 20vh;
}
.title {
    font-family: "RobotoLight";
    text-align: center;
    font-size: 2vh;
    color: #ffffff;
    letter-spacing: 1rem;
    word-break: break-all;
}
.message {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "RobotoMedium";
    text-align: center;
    font-size: 1vh;
    color: #ffffff;
}
.link a {
    color: #ffffff;
}
.link a:hover {
    cursor: pointer;
}
.footer {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

@media (min-width: 580px) {
    .title {
        font-size: 4vh;
    }
    .message {
        font-size: 2vh;
    }
}