@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    /* background: linear-gradient(#002f4c,#073c5a,#2297a8); */
    /* background: url(img/bg.jpg); */
    min-height: 100vh;
    overflow: hidden;
}

.scene{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scene img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.scene img#lamp{
    mix-blend-mode: screen;
}

/* .scene img#man{
    transform: translateY(-7px);
} */
.scene img#stars2{
    display: none;
}



#man {
    height: 75vh;
    width: auto;
    object-position: 0px 200px;
    padding-left: 10vw;
}

.sec{
    position: relative;
    padding: 100px;
    background: #96283a;
}
.sec h2{
    color: #fff;
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.sec p{
    color: #fff;
    font-size: 1em;
    text-align: center;
    line-height: 1.5;
}

.main-logo-container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    height: 100%;
}


.main-logo{
    height: 70vh;
    /* animation-name: neonanimate; */
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}


.text-container{
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    
}
#welcomeText{
    color: #054C78;
    font-size: 2.5vw;
    
    /* text-shadow: 0 10px 15px rgba(0, 0, 0, 0.25); */
}
#welcomeTextbottom{
    color: #054C78;
    font-size: 1.5vw;
    
    /* text-shadow: 0 10px 15px rgba(0, 0, 0, 0.25); */
}
.description{
    
    color: #054C78;
    font-size: 1.2vw;
    font-weight: 600;
    /* text-shadow: 0 10px 15px rgba(0, 0, 0, 0.25); */
}

/*-------------------------NEON text----------------*/
.logo{
    width: 200px;
    fill: #fff;
    
}
.logo:hover {
    animation-name:neonanimate;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: transform 1.5s;
}
@keyframes neonanimate {
    0% {
        filter: drop-shadow(0px 0px 1px #fff)
        drop-shadow(0px 0px 3px #fff)
        drop-shadow(0px 0px 5px #00FFBB)
        drop-shadow(0px 0px 15px #01C38E)
        drop-shadow(0px 0px 50px #132D46);
    }
    100% {
        filter: drop-shadow(0px 0px 3px #fff)
        drop-shadow(0px 0px 5px #fff)
        drop-shadow(0px 0px 10px #00FFBB)
        drop-shadow(0px 0px 20px #01C38E)
        drop-shadow(0px 0px 60px #132D46);
    }
}
/*-------------------------NEON text----------------*/
.scene #man{
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes floating {
    0% { transform: translate(0px,  0px); }
    50%  { transform: translate(0px, 20px); }
    100%   { transform: translate(10px, -20px); }   
}
/*----------------------floating----------------------------*/



@media (max-width: 768px){
   
    #man {
        height: 50vh;
        width: auto;
        object-position: 0px 100px;
        padding-left: 10vw;
    }
    .main-logo-container{
        width: 100%;
        top: 100px;
    }
    .main-logo{
        height: 80vh;
    }

    #welcomeText{
        font-size: 5vw;
    }
    #welcomeTextbottom{
        font-size: 3.5vw;
    }
    .description{
        font-size: 3.5vw;
    }
}