* {
    padding: 0;
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    scroll-behavior: smooth;
    font-family: 'lato' , sans-serif;
}

html,body {
    width: 100%;
    height: 100vh;
}

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

.dark{
    background-color:var(--background-dark);
    color: var(--text-dark);
}
.light{
    background-color:var(--background-light);
    color: var(--text-light);
}

.text-dark{
    color: var(--text-dark);
}
.text-light{
    color: var(--text-light);
}
.background-dark{
    background-color:var(--background-dark);
    color: var(--text-dark);
}
.background-light{
    background-color:var(--background-light);
    color: var(--text-light);
}
/*************************/

.footer {
    display: flex;
    justify-content: center;
    width: 100%;
    color: whitesmoke;
    background-color: var(--blue5);
    border-top: 0.5px solid var(--red1);
    height: 200px;
}
.footer ul {
    list-style: none;
}

.col1,.col2 {
    display: flex;
    height: 100%;
}

.col1 {
    justify-content: center;
    align-items: center;
    width: 300px;
}
.title {
    font-size: 19px;
    font-weight: 600;
    padding-bottom: 5px;
}
.col1 li {
    margin-bottom: 5px;
}
.p-item {
    margin-left: 7px;
    text-decoration: none;
    color: whitesmoke;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}
.p-item:hover {
    color: var(--red1);
}

.col2 {
    flex-direction: column;
    width: 600px;
}
.social {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}
.i-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}
.i-link:hover{
    transform: scale(1.1);
}
.i-link span {
    font-size: 40px;
    color: white;
}

.linkedin {
    background-color: var(--li);
}
.email {
    background-color: var(--em);
}
.telegram {
    background-color: var(--tg);
}
.tw {
    background-color: var(--tw);
}
.github {
    background-color: var(--gh);
}
.codepen {
    background-color: var(--cp);
}

.footlogo {
    font-size: 15px;
    text-align: right;
    padding: 3px 10px;
}


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

@media(max-width: 950px) {
    .col1 {
        width: 30%;
    }
    .col2 {
        width: 70%;
    }
    .employs {
        width: 100%;
        padding: 0 10px;
    }
}
@media(max-width: 750px) {
    .i-link {
        width: 40px;
        height: 40px;
        padding: 5px;
    }
    .i-link span {
        font-size: 25px;
        color: white;
    }
}
@media(max-width: 550px) {
    .footer {
        flex-direction: column;
        height: auto;
    }
    .col1,.col2 {
        width: 100%;
    }
    .col1 {
        padding: 15px;
    }
    .p-item{
        margin: 0 auto 5px auto;
        font-size: 15px;
    }
    .social {
        padding: 10px;
    }
    .footlogo {
        font-size: 14px;
        text-align: center;
        padding: 5px;
    }
}