*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url("orlik.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-position: center;
    /* max-height: 100vh; */
    overflow: hidden;
}
div.content {
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.15);
    box-shadow: inset 1px 1px 150px black;
}
div.content div.content-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -80%);
    padding: 25px;
    border: 1px solid black;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 10px 10px 150px black;
}
div.content div.content-text h1 {
    margin: 0 20px 20px;
    text-align: center;
}
div.content div.content-text p {
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-decoration: underline;
}
div.content div.content-text ul {
    list-style-type: none;
}
div.content div.content-text ul li {
    text-align: center;
    padding: 5px;
}
div.content div.content-text ul li span {
    font-weight: 600;
}
div.content div.content-text ul li a {
    color: black;
    text-decoration: none;
}