* {
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    touch-action: none;
}
html {
    margin: 0;
    overflow: hidden;
    height: 100%;
}
body{
    overflow: hidden;
}

#main {
    width: 100vw;
    height: 100vh;
}
#background {
    z-index: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top right, #2980b9, #6dd5fa, #fcfbfc);
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 20%;
    left: 50%;
    z-index: 2;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.cloud img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

#image-container {
    margin: 0;
    position: absolute;
    width: 100%;
    overflow: hidden;
    bottom: -8%;
}

#background img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}
#foreground {
    z-index: 3;
    width: 100%;
    height: 100%;
}

#turn {
    z-index: 1000;
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: whitesmoke;
    width: 100%;
    height: 100%;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#turn p {
    font-size: 20px;
    font-weight: bold;
}

#plane-banner-wrapper {
    display: flex;
    flex-direction: row;
    position: absolute;
    align-items: center;
    justify-content: space-evenly;
    z-index: 5;
    top: 25%;
    right: -100%;
    position: absolute;
    width: 400px;
    height: 180px;
    object-fit: contain;
    overflow: hidden;
}

#plane {
    display: flex;
    align-items: center;
    justify-self: center;
    z-index: 5;
    object-fit: contain;
}
#plane img {
    width: 100px;
    height: 100px;
}

#banner {
    display: flex;
    position:relative;
    width: 90%;
    height: 90%;
    border: 2px solid black;
    animation: 1s wave ease-in-out infinite alternate;
    background-color: #bff7f4;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    overflow: hidden;
    display: inline-block;
    padding: 8px;
    justify-content: center;
    align-items: center;
}
#banner p{
    text-align: center;
    font-size: 18px;
    height: 100%;

}