/* Font */
@font-face {
    font-family: "NeoSans";
    src: url(fonts/NeoSansW1G-Medium.otf?8facc2ee843eb0e72da88be936920601) format("opentype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "NeoSans";
    src: url(fonts/NeoSansW1G-Medium.otf?8facc2ee843eb0e72da88be936920601) format("opentype");
    font-weight: bold;
    font-style: normal;
}

/* General */
html, body{
    font-family: "NeoSans", Arial, Helvetica, sans-serif;
    font-size: 100%;
    margin: 0;
    padding: 0;
    color: white;
    height: 100%;
}

a{
    color: inherit;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

.main-wrapper{
    display: flex;
    background: url('img/pozadie.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    min-height: 100%;
    align-items: stretch;
    justify-content: stretch;
}

/* Box */
.box{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 50px 100px 50px;
    font-size: 1.15em;
    background: linear-gradient(rgba(35, 61, 122, 0) 0%, rgba(35, 61, 122, 1) 75%);
    background: linear-gradient(rgba(35, 61, 122, 0) 0%, rgba(35, 61, 122, 1) 90vh);
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 120px;
}
.box__message{
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}
.box__message-icon{
    text-align: center;
}
.box__message-icon-img{
    width: 80%;
    max-width: 200px;
    margin-top: 50px;
}
.box__message-title{
    font-size: 2em;
    text-align: center;
    width: 380px;
    max-width: 80%;
    margin: 50px auto;
}

@media (max-width: 1280px){
    .box{
        margin: 30px 60px 60px;
        padding: 40px 80px;
    }
}

@media (max-width: 1024px){
    .box{
        margin: 10px 20px 20px;
        padding: 60px 60px 30px;
    }
}

@media (max-width: 768px){
    .box{
        margin: 10px 20px 20px;
        padding: 60px 20px 20px;
    }
}