body {
    margin: 0;
    padding: 0;
    background-color: #B7D1D0;
    width: 100%;
    height: 100%;
}

.container {
    position: fixed;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 54%;
    background-image: url("sky.png");
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: cover;
}

.instagram {
    height: 64px;
    width: 64px;
    position: absolute;
    right: 288px;
    bottom: 128px;
}

.logo {
    height: 64px;
    width: 64px;
    position: absolute;
    right: 208px;
    bottom: 128px;
}

.banner {
    text-align: center;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}

.banner p {
    text-shadow: 2px 2px 0px #234578;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    font-size: 48px;
    font-weight: normal;
}

@media (orientation: portrait) {
    .container {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        padding-top: 0;
        background-image: url("sky-p.png");
    }

    .instagram {
        bottom: 196px;
    }
    
    .logo {
        bottom: 196px;
    }
}