@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100&family=Source+Code+Pro:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100&family=Rubik:ital@1&family=Source+Code+Pro:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
}

.sidebar{
    position: absolute;
    background-color: rgb(178, 174, 174);
    font-family: 'Source Code Pro', monospace;
    height: 100vh;
    transition: transform 0.3s ease-in;
}

.sidebar nav{
    padding: 40px;
}

.sidebar nav li{
    list-style: none;
    font-size: 30px;
    padding: 40px 0;
    font-weight: bold;
}

.sidebar nav li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    
}

.main{
    width: 90vw;
    padding: 23px;
}

.container{
    display: flex;
}

.infoContainer{
    height: 55vh;
    width: 80vw;
    margin: 120px auto;
    display: flex;
    justify-content: space-around;
}

.devInfo{
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Source Code Pro', monospace;
}

.hello{
    font-size: 50px;
}

.iam{
    font-size: 35px;
}

.name{
    font-size: 50px;
    font-weight: bold;
    font-family: "Fira Sans', sans-serif" ;
}

.about{
    font-size: 40px;
}

.moreAbout{
    font-size: 25px;
    margin-top: 23px;
    font-family: "Fira Sans', sans-serif" ;
}

.buttons{
    margin-top: 34px;
}

.buttons button{
    margin-top: 34px ;
    padding: 9px 14px;
    border-radius: 22px;
    color: white;
    background-color: dodgerblue;
    font-weight: bold;
    font-size: 21px;
    margin: 0 3px;
    cursor: pointer;
}

.buttons button:hover{
    background-color: white;
    color: dodgerblue;

}

.devPic img{
    width: 400px;
    height: 291 px;
    border-radius: 25%;
}

.contactMe{
    font-family: "Fira Sans', sans-serif";
}

.contactMe h1{
    font-family:'Source Code Pro', monospace;
    text-align: left;
    margin: 20px 90px;
    font-weight: bold;
    font-size: xx-larger;}

.contactMe p{
    font-family: 'Source Code Pro', monospace;
    text-align: left;
    margin: 20px 90px;
    font-size: x-large;
    font-weight: bold;
}

[class^="icon"]{
    display:flex;
    margin:20px;
    justify-content:space-between;
}


.icon-Email{
    height: 10px;
    width: 20px;
    margin: 13vh 24vw;
}
.icon-LinkedIn{
    height: 10px;
    width: 20px;
    margin: -14vh 38vw;
}

.icon-GitHub{
    height: 10px;
    width: 20px;
    margin: -44vh 24vw;
}

.icon-Phone{
    height: 10px;
    width: 20px;
    margin: 42vh 39vw;
}


.introContainer{
    font-family: 'Source Code Pro', monospace;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.introItem{
    font-weight: 300;
}

.introItem ul{
    list-style-type: none;  
}

.introItem h3{
    font-weight: bold;
    font-family: 'Fira Sans', sans-serif;
    font-size: x-large;
}

.sidebarGo{
    transform: translate(-443px, 0px);
    position: absolute;
}

.hamburger{
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
}

.ham{
    margin-left: 10px;
    margin-top: 10px;
}
.cross{
    margin-left: 200px;
    margin-top: 10px;
}

@media (max-width: 1615px){
    *{

    }
    .devPic{
        display: block;
    }
}
