@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
}

.sidebar{
    position: absolute;
    background-color: rgb(207, 205, 205);
    /* width: 300px; */
    height: 100vh;
    font-family: 'Montserrat', 'sans-serif';
    transition: 0.3s ease-in;
}

.sidebar nav{
    padding: 45px;
}

.sidebar nav li {
    list-style: none;
    font-size: 30px; 
    padding: 20px 0;
}

.sidebar nav li a {
    text-decoration: none;
    color: black;
}

.main{
    /* background-color: yellow; */
    width: 85vw;
}

.container{
    display: flex;

}

.infoContainer {
    /* background-color: rgb(38, 0, 255);  */
    height: 63vh;
    width: 80vw;
    margin: 137px auto;
    display: flex;
    justify-content: space-around;
}

.devInfo {
    font-size: 10px;
    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: 'Montserrat', 'sans-serif';
}

.about {
    font-size: 2.5em;
}

.moreabout {
    font-size: 2em;
    font-family: 'Montserrat', 'sans-serif';
}

.icons {
    flex-direction: row;
    font-size: 25px;
}

.buttons {
    margin-top: 2.2em;
    font-size: 9px;
}

.btn {
    padding: 9px 14px;
    border-radius: 22px;
    color: white;
    background-color: royalblue;
    font-weight: bold;
    font-size: 2em;
    margin: 3px 3px;
    cursor: pointer;
}

.btn-sm {
    font-size: 15px;
    padding: 10px 19px;
    margin: 12px 0;
}

.btn:hover{
    background-color: white;
    color: royalblue;
}

.devPic img{
    height: 63vh;
}

/* Contact Page  */

.contactform {
    padding: 0 34px;
    font-family: 'Montserrat', 'sans-serif';
    margin: 88px;
}

.contactform h1 {
    font-family: 'Source Code Pro', monospace;
    padding: 12px 0;
}

.contactform form div {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.contactform form div input{
    /* width: 26vw; */
    border-radius: 5px;
    margin: 6px 0 0 0;
    padding: 3px;
}
.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: 24px;
    margin: 3px 0;
}

/* Blog page */

.blogitem {
    margin: 20px;
    font-family: 'Montserrat', 'sans-serif';
}

.blogContainer {
    margin: 88px;
}
 
h1{ 
    font-family: 'Montserrat', 'sans-serif';
    margin: 23px;
}

p{ 
    font-family: 'Source Code Pro', monospace;
}

/* Intro page */
.intro {
    margin: 88px;
}

.intro h1 {
    font-family: 'Montserrat', 'sans-serif';
    margin: 15px;
}

.intro p{
    font-family: 'Source Code Pro', monospace;
    margin: 1.5em;
    font-weight: 600;
}

.skillContainer{
    padding: 12px;
    display: flex;
    flex-direction: row;
}

.skillItem {
    box-sizing: border-box;
    align-items: center;
    font-family: 'Source Code Pro', monospace;
    font-weight: 900;
    padding: 0 7px;
    font-size: 15px;
}

.SContainer {
    width: 265px;
    background-color: #ddd;
  }

.skill {
    width: 265px;
    height: 15px;
    background-color: red;  
    border: 2px solid black;
    text-align: right;
    color: white;
    padding-bottom: 5px;
}

.html {width: 90%; background-color: #04AA6D;}
.css {width: 40%; background-color: #2196F3;}
.js {width: 60%; background-color: #f44336;}
.python {width: 80%; background-color: midnightblue;}
.java {width: 50%; background-color: royalblue;}

.hundred {
    width: 265px;
    background-color: aqua;
}
.fifty {
    width: 132.5px;
    background-color: blueviolet;
}

.t5 {
    width: 75px;
    background-color: green;
}

.sidebarGo {
    transform: translate(-300px,0px);
    position: absolute;
}

.hamburger {
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
}

@media (max-width: 1615px)  {
    * {
        /* background-color: blue; */
    }
    /* .sidebar{
        transform: translate(-300px,0px);
        position: absolute;
    } */
    .devPic{
        display: none;
    }
    .infoContainer, .intro, .blogContainer,.contactform {
        margin: 50px 8px;
    }
}

/* Icons class style */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
  }
  
.fa:hover {
    opacity: 0.7;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
  }
  
.fa-linkedin {
    background: #007bb5;
    color: white;
  }
  
.fa-instagram {
    background: #125688;
    color: white;
  }

.fa-github {
    background: #2c4762;
    color: white;
  }

.fa-telegram {
    background: #0088cc;
    color: black;
    /* font-size: 30px; */
   }
  