body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    transition: all .8s ease;
}
::selection{
    color: tomato;
}
a{
    text-decoration: none;
}

/*--------------------LAnd Area------------------------*/

.container1{
    background-color: rgb(0, 0, 0);
    height: 100vh;
    transition: all .5s ease;
    animation: expand cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
}
.land_page{
    padding: 30px;
}
.nav-top{
    display: flex;
    justify-content: center;
    position: sticky;
    z-index: 2;
}
}
.nav-top-2 a{
    font-family: 'Marck Script', cursive;
    font-size: 1.9rem;
    color: blue;
     transition: color 1s;
}
.nav-top-2 a:hover{
    color: white;
}
.nav-down{
    bottom: 30px;
    font-size: 1.245rem;
    letter-spacing: 60px;
    padding-left: 5px;
    z-index: 2;
    cursor: pointer;
    position: fixed;
    color: rgb(255, 255, 255);
}
ion-icon:hover {
    color: blue;
}
.land-page-center span{
    position: fixed;
    left: 5%;
    top: 31%;
    font-size: 22rem;
    font-family: 'Squada One', cursive;
    transform: scaleY(2);
    color: rgb(16, 16, 16);
    filter: brightness(-2);
}
@keyframes expand {
    0% {
      transform: translateY(1400px);
    }
    100% {
      transform: translateY(0px);
    }
  }
