html{
    height: 100%;
}
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.582);
}
h1,h2{
    margin: 0;
}
ul{
    padding: 0;
}
section{
    width: 70%;
}
a{
    text-decoration: none;
    color: rgb(255, 163, 42);
    font-size: 25px;
    margin-top: 10px;
}
header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 70%;
}
.little{
    height: 100px;
}
nav{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu{
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    transition: opacity 0.5s ease;
    opacity: 1;
}
.menu li{
    list-style: none;
    cursor: pointer;
    color: rgb(216, 213, 213);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    transition: all 0.5s;
}
.menu li:hover{
    color: rgba(255, 43, 43, 0.63);
    transition: all 0.5s;
}
.burger_menu{
    height: 60px;
    width: 60%;
    max-width: 600px;
    border-radius: 80px;
    background-color: rgb(150, 150, 150);
    position: fixed;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: opacity 0.5s ease;
    opacity: 1;
}
.burger_menu {
    cursor: pointer;
}
.burger_menu circle {
    transition: all 0.5s;
}
.burger_menu:hover circle {
    fill: rgba(255, 43, 43, 0.63);
    transition: all 0.5s;
    stroke: rgba(255, 45, 45, 0.164)
}
.pan{
    width:150px;
    height: 150px;
}
.hide{
    opacity: 0;
}

main{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.about h1{
    color: blanchedalmond;
    margin-bottom: 20px;
}
.about span{
    font-size: 25px;
    color: azure;
}
.skills{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1960px;
    height: 100%;
}
.skills_wpapper{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 30px;
}
.skills h2{
    color: beige;
    font-size: 25px;
}
.skill span{
    text-align: center;
    font-size: 50px;
    color: aliceblue;
}
.skill img{
    margin-top: 10px;
    height: 50px;
    width: 50px;
}
.skill{
    box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.2);
    width: 350px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border: 5px solid rgba(255, 45, 45, 0.164);
    border-radius: 20px;
    transition: transform 0.5s ease;
}
.skill:hover{
    cursor: pointer;
    background-color: #7f7f7ff1;
    transform: translateY(5px);
}
.edu_place{
    display: flex;
    align-items: center;
    color: bisque;
}
.edu_place::before{
  content: '';
  display: inline-block;
  height: 25px;
  width: 35px;
  background-image: url('../IMG/icons/hamster.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.code{
    max-width: 1000px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.code_example{
    font-size: 14px;
    background: #131414f1;
    width: 100%;
    margin: 0;
}
code{
    color: white;
}
.purple_word {
    color: #B294BB;
}
.variable_orange {
    color: #D1933F;
}
.variable_blue {
    color: #89B6C5;
}
.green_operand {
    color: #AEBC67;
}
.hacker_hamster{
    width: 20px;
    height: 20px;
}
.WARNING{
    font-size: 30px;
    color: rgb(255, 89, 89);
}
.languages h2{
    color: #AEBC67;
    font-size: 45px;
    margin-top: 30px;
}
.languages li{
    color: rgb(255, 163, 42);
    font-size: 45px;
    margin-top: 30px;
}
.contacts h2{
    color: #AEBC67;
    font-size: 45px;
    margin-top: 30px;
}
.contacts li{
    color: rgb(255, 163, 42);
    font-size: 45px;
    margin-top: 30px;
}
footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100px;
    /* left: 0;
    bottom: 0; */
}
.logo_container{
    display: flex;
    align-items: center;
    position: relative;
    width: 200px;
    height: 100px;
}

#FHamster{
    position: absolute;
    right: 30px;
    top: 20px;
    width: 30px;
    height: 30px;
}
.github_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 230px;
    height: 100px;
}
.github_container img{
    width: 50px;
    height: 50px;
}
footer span, .github_container span {
    cursor: pointer;
    color: rgb(216, 213, 213);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
}
footer a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}
.none{
    display: none;
}