@import url('https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Poppins: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&display=swap');

html{
    scroll-behavior: smooth;
}

*{
    font-family: 'Overlock', cursive, Poppins, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    overflow-x: hidden;
}


/* splash screen section start*/
.splash{
    position: fixed;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    z-index: 200;
    background: #222831;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.splash.display-none{
    position: fixed;
    opacity: 0;
    margin: 0;
    padding: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    z-index: -10;
    background: #222831;
    transition: all 2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@keyframes fadeIn{
    to{
        opacity: 1;
    }
}
.fade-in{
    opacity: 0;
    animation: fadeIn 5s ease-in forwards;
    width: 200px;
    height: auto;
}
@media (max-width: 800px) {
  .fade-in{
    opacity: 0;
    animation: fadeIn 5s ease-in forwards;
    width: 150px;
    height: auto;
  }

}
@media (max-width: 500px) {
  .fade-in{
    opacity: 0;
    animation: fadeIn 5s ease-in forwards;
    width: 100px;
    height: auto;
  }
}
/* splash screen section end*/


body{
    background-color: #222831;
}
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #222831;
}
::-webkit-scrollbar-thumb {
    background: #F05454;
}
::selection{
    background: #F05454;
}

/* heading start */
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: cenetr;
    margin: 20px 40px 0 40px;
}
.container .heading{
    width: 50%;
    padding-bottom: 50px;
}
.container .heading h3{
    font-size: 2em;
    font-weight: bolder;
    text-align: center;
    color: #DDDDDD;
    padding-bottom: 10px;
    border-radius: 5px;
}
.container .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.container .box .dream{
    display: flex;
    flex-direction: column;
    width: 33%;
}
.container .box .dream img{
    width: 100%;
    padding-bottom: 10px;
    border-radius: 5%;
}
.border{
    width: 400px;
    height: 5px;
    background: #F05454;
    margin: 10px auto;
    border-radius: 10px;
}
@media only screen and (max-width:769px) {
    .container .box{
        display: flex;
        flex-direction: column;
    }
    .container .box .dream{
        width: 100%;
    }
}
@media only screen and (max-width:642px) {
    .container .heading{
        width: 100%;
    }
    .container .heading h3{
        font-size: 2em;
    }   
    
}

.connect{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
.connect p{
    font-size: 20px;
    font-weight: normal;
    max-width: 80%;
    color: #DDDDDD;
}
.feedback{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
.feedback a{
    color: #DDDDDD;
    background-color: #F05454;
    padding: 8px;
    font-size: 15px;
    border:1px solid #DDDDDD;
    border-radius: 8px;
}
.feedback a:hover{
    background-color: #30475E;
    color: #DDDDDD;
}
/* heading end*/


/* footer section start*/
footer{
    background: #292e37;
    height: auto;
    width: 100vw;
    padding-top: 30px;
    color: #DDDDDD;
    position: relative;
    bottom: 0;
    
}
.footercontent{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footercontent h3{
    font-size: 30px; 
    font-weight: 600;
    color: #F05454;
    line-height: 3rem;
}
.footercontent p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 18px;
}
.social{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 1rem 0;
}
.social li{
    margin: 0 10px;
}
.social a{
    text-decoration: none;
    color: #DDDDDD;
}
.social a i{
    font-size: 30px;
    transition: color .4s ease;
}
.social a:hover i{
    color: #F05454;
}
.footerend{
    width: 100vw;
    padding: 8px 0;
    text-align: center;
}
.footerend p{
    font-size: 14px;
    word-spacing: 2px;
}
.footerend span{
    opacity: .4;
    font-weight: 200;
}
.developer{
    color: #979191;
  }
/* footer section end*/

/* visitors count start*/
#count{
    font-size: 25px;
    margin: 0;
  }
  /* visitors count end*/