body {
    margin: 0;
    background-color: black;
    transition: background-color 3.5s;
    background-color: floralwhite;
}

.all_CV {
    margin: auto;
    width: 60vw;
    flex: auto;
    flex-direction: column;
}

.bio_1 {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
}

.photo {
    width: 150px;
    height: 150px;
}

img {
    position: absolute;
    z-index: 1;
    width: 150px;
    border-radius: 35px;
    transition-delay: 0.4s;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.2, 0.97, 1, 0.99);
}

img:hover {
    width: 500px;
    border-radius: 35px;
    transition-timing-function: cubic-bezier(0.2, 0.97, 1, 0.99);
    transition-delay: 1s;
    transition-duration: 0.5s;
}

.fio {
    padding: 3px;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 35px;
    font-style: oblique;
}

.gender,
.reloc,
.education,
.drive {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    padding-left: 10px;
}

.contacts {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contact,
a {
    text-decoration: none;
    font-size: 14px;
    font-family: 'Open Sans';
    color: #0f0bef;
    padding: 2px;
}

.work_exp,
.current,
.n-1,
.n-2,
.n-3,
.languages,
.hobbies {
    flex-direction: column;
    padding: 5px;
    display: flex;
}

.dates,
.lang_type {
    color: blueviolet;
    font-size: 19px;
    text-shadow: 0px 0px 1px #8a2bd9;
}

.company {
    font-size: 25px;
    font-family: cursive;
}

.job_name,
.text {
    font-size: 17px;
    font-family: calibri;
}

.job_description {
    padding-left: 10px;
}

li {
    list-style-type: square;
    font-kerning: initial;
    font: message-box;
}

.core_skills,
.hobbies_text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    font-style: italic;
}

.skill,
.hobby {
    background-color: #635700b8;
    border: none;
    color: white;
    padding: 15px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 4px 2px;
    cursor: default;
    border-radius: 16px;
    transition-duration: 0.3s;
    user-select: none;
}

.skill:hover,
.hobby:hover {
    background-color: #000000;
    border: 2px;
    border-color: lemonchiffon;
    color: #dcff00;
    padding: 15px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 4px 2px;
    cursor: default;
    border-radius: 16px;
    transition-duration: 0.3s;
    user-select: none;
}

.lang {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.lang_text,
.skill_text,
.hobby_text,
.exp_text {
    font-size: 28px;
    color: darkgreen;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    user-select: none;
}

footer {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: baseline;
    height: fit-content;
    user-select: none;
}

.footer_left,
.footer_right {
    margin-bottom: 0;
}

@media (max-width:4096px) {
    .all_CV {
        width: 60vw;
        margin: auto;
    }
}

@media (max-width:1200px) {
    .all_CV {
        width: 70vw;
        margin: auto;
    }
}

@media (max-width:992px) {
    .all_CV {
        width: 90vw;
        margin: auto;
    }
}

@media (max-width:767px) {
    .all_CV {
        width: 100vw;
        margin: 1%;
    }
    img:hover {
        width: 300px;
    }
    .bio_1 {
        margin-left: 15px
    }
}