/* general */
@import url('https://fonts.googleapis.com/css?family=Roboto');

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

html {
    zoom: 80%;
}


body {
    margin: 20px;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #101214;
    color: #7A7C80;

}

h2,
.white {
    color: #fff;
}

a {
    color: #7A7C80;
    text-decoration: none;
}

/* section left 1 */
.section-1 {
    padding-top: 40vh;
    padding-left: 20vw;
    text-align: center;
}

.section-1 p {
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin: 0;
}

.section-1 h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-1 a {
    font-size: 1.5rem;
    padding: 10px;
} 

/* section right 2 */
.section-2 {
    padding-top: 10vh;
    width: 90%; /*text depth*/
}

.section-2 h2 {
    font-size: 28px;
    margin-bottom: 10px;
}



.section-2 p {
    font-size: 18px;
    padding-bottom: 10px;
    margin: 0;
}

.section-2 ul{
    font-size: 18px; 
    margin: 0; 
}
/*
.section-2 a {
    display: block;
    padding: 5px;
    font-size: 1.2rem;
    padding-left: 0;
    width: 100px;
} */

/*my skills rates*/

.section-2 h4{
    font-size: 18px;
    margin-bottom: 5px;
    margin-left: 20px;
    font-weight: 400;
}

.my-skills .progress {width:40%}

.my-skills .progress .technique div {
    height:20px;
    background-color:#7A7C80;
    border-radius: 5px;
    margin-left: 20px;
}

.my-skills .progress .technique div span {
    background-color:#eb4b1b;
    display:block;
    text-align:right;
    height:20px;
    color:#000;
    font-weight:bold;
    line-height:20px;
    border-radius: 5px 0 0 5px;
    
}


/* animations */
.section-2 a:hover {
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.section-1 a:hover {
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.white:hover {
    position: relative;
    padding-left: 10px;
}

/* media */
@media(max-width:780px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-1 {
        padding: 0;
        padding-top: 5rem;
    }

    .section-2 {
        padding: 0;
        padding-left: 1.5rem;
        padding-top: 2rem;
    }
}