* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
    letter-spacing: .4px;
}

html {
    -webkit-tap-highlight-color: transparent;
}


/*container*/

body {
    margin-top: 20px;
}

#container {
    height: 100vh;
}

.container {
    width: 98%;
    margin: auto;
    background: white;
}

/*left*/

.left .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .9rem;
    margin-bottom: 20px;
    box-shadow: .3px .3px;
    border-left: 1px solid #eaeaea;
    border-top: 1px solid #eaeaea;
}

.about {
    text-align: center;
}

.profile {
    width: 200px;
}

.profile img {
    width: 100%;
}

/*social  links*/

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    text-align: center;
    align-items: center;
}

.fa-facebook {
    background: #3b5998;
}

.fa-instagram {
    background: #3f729b;
}

.fa-quora {
    background: #CC3333;
}

.fa {
    padding: 10px;
    font-size: 18px;
    color: white;
    width: 100%;
    transition: .3s;
}

.fa:hover {
    opacity: .8;
}

/*right grids*/

/*box shadow*/

.work-exp, .education, .contact, .skills, form {
    border: 1px solid #eaeaea;
    box-shadow: .3px .3px;
}

.work-exp {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.work-exp h2 {
    grid-column: 1/3;
}

/************/

.education {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.education h2 {
    grid-column: 1/3;
}

/*************/

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact h2 {
    grid-column: 1/2;
}

.contact p {
    margin-bottom: 10px;
}

.email-link {
    color: black;
    text-decoration: none;
    transition: .2s;
    font-weight: bold;
}

.email-link:hover {
    color: coral;
}

/**************/

/*skills*/

.skills h2 {
    margin-bottom: 20px;
}

.outer-bar {
    background: rgb(245, 245, 245);
    height: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: .2px .2px 2px black;
}

.outer-bar p {
    font-size: 12px;
    font-weight: bold;
}

.inner-bar {
    background: coral;
    height: 10px;
}

/*form*/

form {
    position: relative;
}

form h2 {
    margin-bottom: 20px;
}

.btn {
    background: coral;
    color: white;
    cursor: pointer;
    outline: none;
    border: none;
    font-size: medium;
}

.btn:hover {
    opacity: .9;
}

input, textarea, .btn {
    width: 100%;
    font-size: medium;
    font-weight: 400;
}

input {
    height: 40px;
    outline-color: coral;
    margin-bottom: 20px;
}

textarea {
    resize: none;
    height: 300px;
    padding-left: 3px;
    padding-top: 7px;
    outline-color: coral;
}

.btn {
    height: 40px;
    margin-bottom: 10px;
    margin-top: 15px;
}

/************/

/*footer*/

footer {
    background: rgb(61, 61, 80);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    position: absolute;
    bottom: 0px;
}

footer p {
    color: white;
    font-size: 12px;
}

/*margins*/

li {
    margin-bottom: 10px;
}

.quote, .about, .social-links, .work-exp, .education, .contact, .skills {
    margin-bottom: 20px;
}

/*paddings*/

.work-exp, .education, .contact, .skills, form {
    padding: 30px;
}
/*menu*/

.menu-items {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    transform: scale(0);
    align-items: flex-start;
    transition: .2s;
    align-items: center;
}

.toggle-scale {
    transform: scale(1);
}

.menu-items a {
    text-decoration: none;
}

.menu {
    background: white;
    display: flex;
    width: 96%;
    margin: auto;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 5;
    height: 30px;
}

/*icons*/

.menu-items .fa {
    color: black;
    transition: .2s ease-in-out;
}

.menu-items .fa:hover {
    color: coral;
}

/*button menu*/

.menu-btn {
    background: none;
    border: 1px solid black;
    padding: 5px;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.menu-btn:hover {
    border-color: coral;
    color: coral;
}
