* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family:  sans-serif;
}

.window-wrap {
    height: 115vh;
    width: 100%;
    background: url(landscape-resize.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.fade {
    width: 100%;
    height: 115vh;
    background: rgba(0,0,0, 0.5);
}
.logo-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    padding-top: 300px
}
.logo-wrap p {
    color: white;
    width: 500px;
    height: 50px;
    font-size: 20px;
    text-align: center;

}
.logo-wrap img {
    height: auto;
    width: 300px;
}
.logo-container {
    width: 90%;
    margin: 20px 0;
}
.logo-container img {
    width: 13%;
    height: auto;
    margin: 0 10px;
}
.message {
    color: white;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    /* font-size: 48px; */
    font-family: sans-serif;
    padding: 25px;
}
h1 {
    font-size: 44px;
    width: 120%;
    margin: 0;
}
.message p {
    font-size: 24px;
    line-height: 1.5;
}
.message p:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
}

.message a {
    color: #ccc;
    transition: all 0.1s ease-in-out;
}
.message a:hover {
    color: maroon;
}

@media (max-width:1320px) {
    .message {
        
    }
    .message p {
        font-size: 18px;
        width: auto;
    }
    .logo-container img {
        width:100px;
    }
}
@media (max-width: 1065px) {
    .logo-container img {
        width: 80px;
    }
}
@media (max-width: 991px) {
    h1 {
        font-size: 44px;
    }
    .message p {
        font-size: 18px;
    }
}
@media (max-width: 920px) {
    .message p {
        font-size: 16px;
    }
    .logo-wrap img {
        width: 40vw;
        height: auto;
    }
    .logo-container {
        width: 85%;
    }
    .window-wrap, .fade {
        height: 120vh;
    }
}
@media (max-width: 780px) {
    h1 {
        width: 100%;
    }
    .logo-wrap {
        justify-content: center;
        padding-top: 0;
        margin: 0;
        /* background: blue; */
        height: auto;
    }
    .logo-wrap img {
        width: 250px;
    }
    .message {
        /* background: pink; */
        width: 100%;
        text-align: center;
        height: auto;
        bottom: 0;
        top: 250px;
    }
    .message h1 {
        font-size: 28px;
    }
    .message p {
        margin: 0 auto;
    }
    .message p:nth-child(3) {
        position: relative;
    }
    .window-wrap {
       height: 130vh;
    }
    .fade {
        height: 130vh;
    }
    .logo-container {
        margin: 20px auto;

    }
}
@media (max-width: 642px) {
    .window-wrap, .fade {
        height: 145vh;
    }
}
@media (max-width: 565px) {
    .window-wrap, .fade {
        height: 170vh;
    }
}
@media (max-width: 432px) {
    .window-wrap, .fade {
        height: 200vh;
    }
}