
footer{
     
   
    background-color: rgb(17, 17, 17);
    text-align: center;
	padding: 20px;
	 /* margin-bottom:190px;  */
    
    
}


.social{

    display: flex;
   
}
.social ul{
    display: flex;
    list-style: none;
    width: 300px;
   height: 30px;
  margin: auto;
}
.outer{
    color: aqua;
}
.social a{
    /* padding:10px 40px ; */
   color: aqua;
   font-size: 35px;
   padding: 20px;
   margin: auto;
 height: 50px;
 width: 100vw;   

}
.outer p{
  margin-top: 10px;
  word-spacing: 3px;

    
}












* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}
body{
    min-height: 100vh;
    width:100vw;
}
::-webkit-scrollbar{
display: none;
}
 #trim{
     width:250px;
     background-repeat: no-repeat;
     float: left;
     margin-top: 190px;
     margin-left: 130px;
 }

#main{
    background-image: url(sandy.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    
    height: 100vh;
    
    
    

}


#click{
    display: none;
}
  

nav {
    height: 80px;
    background-color:black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px 0px 100px;
}


nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: cyan;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;

    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;

}

nav ul li a:hover,
nav ul li a.active {
    background: white;
}

nav .logo {
    font-size: 33px;
    color:cyan;
    font-weight: 600;

}

nav ul li {
    margin: 0 5px;

}
.menu-btn i{
    color: aqua;
    display:none ;
    cursor: pointer;
}

@media(max-width: 940px) {
    .menu-btn i{
        display:block;
    }
	#main{
        background-image: url(pointer.jpg );
        background-size: cover;
        background-repeat: no-repeat;
        height: 100vh;
        
        
        
        
    
    }
	#trim{
        width:150px;
        background-repeat: no-repeat;
        float: left;
        margin-top: 140px;
        margin-left: 20px;
    }
	
  #click:checked ~ .menu-btn i::before{
      content: "\f00d";
  }
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        background: #111;

        width: 100%;
        display: block;
        text-align: center;
        transition: all 0.3s all ease;
    }
    #click:checked ~ ul{
        left: 0%;
    }
    nav ul li {
        margin: 40px 0;
    }

    nav ul li a {

        font-size: 20px;
        display: block;
    }nav ul li a:hover,
    nav ul li a.active {
        color: aqua;
        background: none;
    }
    
}

