@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
}

.sidebar {
    /* background-color: red; */
   position: absolute;
    font-family: 'Fira Sans', sans-serif;
    height: 100vh;
    background-color: rgb(218, 203, 203);
    transition: transform 0.3s ease-in;
}

.sidebar nav {
    padding: 30px;
}

.sidebar nav li {
    list-style: none;
    font-size: 15px;
    padding: 25px 0;

}
.sidebar nav li a{
    text-decoration: none;
    color:black;
}
.main {
    /* background-color: rgb(109, 107, 109); */
    width: 90vw;

}

.container {
    display: flex;


}

.infoContainer {
    /* background-color: black; */
    height: 40vh;
    width: 80vw;
    margin: 144px auto;
    display: flex;
    justify-content: space-around;

}

.devInfo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Source Code Pro', monospace;
    /* color: grey; */
}

.devPic img {
    width: 220px;
    height: 40vh;

}

.hello {
    font-size: 50px;

}

.name {
    font-size: 40px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: bold;
}

.about {
    font-size: 30;
    font-weight:bold;
}
.moreAbout{
    font-family: 'Fira Sans', sans-serif;
    font-size: 22px;
    margin-top: 20px;
}
.buttons{
    margin-top: 32px;
    
}
.buttons button{
    padding: 9px 14px;
    border-radius: 18px;
    color: white;
    background-color: cadetblue;
    font-weight: bold;
    font-size: 15px;
    margin: 0 3px;
    cursor: pointer;
}
.buttons button:hover{
    background-color: white;
    color:cadetblue;
}
.contactForm{
    padding :0  34px;
    padding-top: 70px;
    font-family: 'Fira Sans', sans-serif;

}
.contactForm h1{
    font-family: 'Source Code Pro', monospace;
    padding:12px 0;
}
.contactForm form div{
    padding: 8px 0;
  

}
.contactForm form div input{
    display: flex;
    flex-direction: column;
    width: 15vw;
    border-radius: 5px;
    margin: 6px 0 0 0;
    padding: 3px;
}
#emailHelp{
    font-size: 11px;
    color: midnightblue;
    margin: 0 5px;
}
#form-check{
    flex-direction: row;
 

}
#form-check input{
    width:14px;
    margin:  3px 0;
}
#btn {
    padding: 10px 15px;
    border-radius: 19px;
    color: white;
    background-color: cadetblue;
    font-size: 15px;
    margin:  0;
    cursor: pointer;
}
#btn:hover{
    color: cadetblue;
    background-color: white;
}
.skills li{
list-style: none;
}
.sidebarGo{
    transform: translate(-443px,0px);
    position: absolute;
   }
.hamburger {
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
}
.cross{
    margin-left :90px;
}
@media(max-width:1615px){
.devPic{
    display: none;
}
  
   /* .sidebar{
    transform: translate(-443px,0px);
    position: absolute;
   } */
}
