*{
    margin: 0px;
    padding: 0px;
}

html{
    font-family: 'Pacifico', cursive;
}

body{
    background: rgb(43,40,85);
background: linear-gradient(90deg, rgba(43,40,85,1) 0%, rgba(103,35,91,1) 46%, rgba(116,0,65,1) 100%);
}

.list a{
    color: #aba0e3;
    text-decoration: none;
    padding: 20px 5px;
    font-size: 24px;
    text-emphasis: center;
}

.list a:hover {
    background-color: black;
}

.navigation{
    max-width: 1000px;
    margin: 0 auto;
}

.flex-nav{
    width: 100%;
}

.list{
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    list-style: none;
    align-items: center;
    border: 2px solid rgb(67, 0, 148);
    background-color: #0000006b;
}

.header{
    height: 600px;
}

.header_inner{
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_inner img{
    height: 80%;
    width: 50%;
}

.header_info{
    width: 30%;
    margin-left: 10%;
    color: #1a0126cf;
}

.about{
    height: 600px;
    margin: 150px 0px;
}

.about_inner{
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.blok:nth-child(even){
    align-self: flex-end;
}

.blok{
    height: 300px;
    width: 200px;
    background-color: #866cf877;
    border: 2px solid #785dff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    border-radius: 15px;
}

.blok img{
    height: 100px;
    width: 100px;
    margin-bottom: 25px;
}







@media all and (max-width : 1000px){
    .list{
        flex-wrap: wrap;
        height: 140px;
    }

    .list li{
        flex: 1 1 15%;
        text-emphasis: center;
    }

    .social {
        flex: 1 1 25%;
    }

    .header_inner img{
        height: 55vw;
        width: 30vw;
    }

    .about_inner{
        justify-content: space-around;
    }

    .blok{
        margin-bottom: 50px;
    }
}

@media all and (max-width : 500px){
    .list a{
        font-size: 15px;
    }

    .header_inner{
        flex-direction: column-reverse;
        justify-content: space-around;
    }

    .header_info{
        margin-left: 0px;
        font-size: 14px;
    }

    .header{
        height: 500px;
    }
}

