.landing{
    width: 100%;
    height: 110lvh;
    background-image: url(../images/skyline\ background.png);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
}
.landing-inner{
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 75lvh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}
.landing-inner h1{
    display: flex;
    justify-content: center;
    font-size: 60px;
    font-weight: 900;
    padding-bottom: 5px;
    margin-bottom: 0;
    padding-top: 0;
    margin-top: 0;
    color: white;
}
.bottom-h{
    color: rgb(7, 106, 205);
}

.landing-inner button{
    width: 9rem;
    padding: 10px;
    font-weight: bold;
    margin:  0 auto;
    margin-top: 2rem;
    text-align: center;
    background-color: transparent;
    border: solid 1px white;
    color: white;
    cursor: pointer;
}
.landing-button a{
    color: white;
    text-decoration: none;
}

.landing-filter{
    position: absolute;
    width: 100%;
    height: 110lvh;
    left: 0;
    top: 0;
    background-color: rgb(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    z-index: 0;
}

@media (max-width: 1047px) {
    .landing{
        background-position: right;
    }
    .landing-inner{
        height: 60lvh;
    }
}


@media (max-width: 740px) {
    .landing-inner h1{
        width: 100%;
        font-size: 45px;
        backdrop-filter: blur(3px);
        border-radius: 1rem;
        margin: 0 auto;
    }
}

@media (max-width: 447px){
    .landing-inner h1{
        font-size: 30px;
    }
}