*{
    margin: 0;
    padding: 0;
}
.container{
    background: #000;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: #fff;
    font-family: sans-serif;
}
.hedden{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:10px 20px;
}
#logo a img{
    width: 50px;
    margin: 10px 0;
}
.nave ul li{
    display: inline;
    margin:0 20px;
}
.nave ul a{
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}
.nave ul a:hover{
    text-decoration: underline;
}
.content{
display: flex;
justify-content: space-evenly;
align-items: center;
margin: auto;
}
h2{
    margin: 10px 0;
}
.count p{
    width: 60%;
    font-weight: 700;
    margin: 5px 0;
}
.icon img{
    width: 200px;
}
.image{
    text-align: center;
    
}
.image img{
    width: 50px;
    margin: 10px;
    cursor: pointer;
    transition: 0.5s;
}
.image img:hover{
scale: 1.1;
}