

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200&family=Source+Code+Pro:wght@300&display=swap');


*{
    margin: 0;
    padding: 0;
}

.sidebar{
    position: absolute;
    background-color: rgb(223, 159, 65);
    font-family: 'Comfortaa', cursive;
    height: 100vh;
    transition: transform 0.3s ease-in;
    opacity: 0.9;
    
}

.sidebar nav{
    padding: 45px;
}

.sidebar nav li{
    list-style: none;
    font-size: 15px;
    padding: 33px 0;
    
}

.sidebar nav li a{
    text-decoration: none;
    color: black;
    font-weight: 900;
    
}

.sidebar nav li:hover{
    transform: scale(1.1);
}

.main{
    /* background-color: yellow; */
    width: 90vw;
}

.container{
    display: flex;
}

.infoContainer{
    /* background-color: green; */
    height: 58vh;
    width: 80vw;
    margin: 144px auto;
    display: flex;
    justify-content: space-around;
}

.devInfo{
    font-size: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Source Code Pro', monospace;
}

.hello{
    font-size: 3em;
}
.name{
    font-size: 3em;
    font-weight: bold;
    font-family: 'Comfortaa', cursive;
}
.about{
    font-size: 2.2em;
    font-family: 'Comfortaa', cursive;
}

.moreAbout{
    font-size: 1.35em;
    font-family: 'Comfortaa', cursive;
    margin-top: 10px;
}

.buttons{
    margin-top: 2.2em;
    font-size: 16px;
}

.btn{
    padding: 9px 14px;
    border-radius: 22px;
    color: white;
    background-color: dodgerblue;
    font-weight: bold;
    font-size: 15px;
    margin: 3px 3px;
    cursor: pointer;
}

.btn-sm{
    font-size: 14px;
    padding: 10px 14px;
    margin: 10px 0;
}

.btn:hover{
    background-color: white;
    color: dodgerblue;
}

.devPic img{
    height: 58vh;

}

.contactform{
    font-family: 'Source Code Pro', monospace;
    padding: 0 34px;
    margin: 0 88px;
    background-color: rgb(202, 190, 135);
    opacity: 0.7;
    font-weight: 900;
    
}

.contactform h1{
    font-family: 'Comfortaa', cursive;
    padding-top: 20px;
    /* text-align: center; */
    /* padding: 12px 0; */
}

.contactform form div{
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.contactform form div input{
    /* width: 20vw; */
    border-radius: 5px;
    margin: 6px 0;
    padding: 2px;
}
.contactform form{
    margin: 0 40px;
}

#emailHelp{
    font-size: 12px;
    color: midnightblue;
    margin: 0 5px;
    padding: 3px 0 0 0;
}

#form-check{
    flex-direction: row;
}

#form-check input{
    width: 25px;
    margin: 3px 0;
    font-size: 13px;
}

.blogItem{
    margin: 20px;
    font-family: 'Comfortaa', cursive;
}

.blogContainer{
    margin: 80px 88px;
}

h1{
    font-family: 'Fira Sans', sans-serif;
    margin: 23px;
    font-size: 50px;
}

p{
    font-family: 'Source Code Pro', monospace;
}

.intro{
    margin: 60px 88px;
}

.intro h2{
    font-family: 'Comfortaa', cursive;
    margin: 12px;
    
}

.intro p{
    font-family: 'Source Code Pro', monospace;
    margin: 12px;
}

.skillContainer{
    padding: 12px;
}

.skillItem{
    display: flex;
    align-items: center;
    font-family: 'Source Code Pro', monospace;
    font-weight: 900;
}

.skill{
    height: 6px;
    width: 256px;
    background-color: red;
}

.hundred{
    width: 265px;
    background-color: blueviolet;
}

.fifty{
    width: 125px;
    background-color: aqua;
}

.t5{
    width: 75px;
    background-color: yellow;
}

.sidebarGo{
    transform: translate(-443px, 0);
    position: absolute;
}

.hamburger{
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
}

.ham{
    margin-top: 10px;
    margin-left: 17px;
}

.hamburger:hover{
    transform: scale(1.1);
}

.cross{
    margin-left: 100px;
}

/* footer CSS code start */
footer{
    height: 20vh;
    background-color: rgb(19, 19, 19);
    color: rgb(205, 255, 232);
}

.text-all-center{
    text-align: center; 
    height: 20vh; 
    display: flex; 
    justify-content: center;
    align-items: center; 
}

.text-all-center a:hover{
    transform: scale(1.2);
}

.text-all-center a{
    margin: 10px;
}

.fa-instagram{
    color: #e84393;
}

.fa-linkedin{
    color: #0077b5;
}

.fa-twitter{
    color: #1DA1F2
}

.fa-youtube{
    color: #FF0000;
}
 /* footer CSS code end */


@media (max-width: 1000px){

    .devPic{
        display: none;
    }

    .intro, .blogContainer, .contactform{
        margin: 50px 8px;
    }
    .contactform{
        padding-left: 10px;
    }
}


 /* Launch Page CSS Code....Animated Background Start */
 body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	-webkit-animation: gradient 15s ease infinite;
	        animation: gradient 15s ease infinite;
}

@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
 /* Launch Page CSS Code....Animated Background End */

 