*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #141414;
    color: #fff;
}

/*header style sheet section */
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.title{
    margin: 5px 0px 10px 20px;
    color: aqua;
    font-size: 20px;
}
.sign-up {
    margin: 10px 20px 10px 0px;
    text-align: center;
    width: 90px;
    padding: 1px 1px 1px 1px;
    background: transparent;
    color:aqua;
    border-radius: 5px;
    border: 3px solid  #421aa1;
}
.sign-up a{
    text-decoration: none;
}


/*main style sheet section */

main{
    width: 100%;
    display: flex;
    flex-direction: column;
}
/*main |description style section */

.description{
    width: 100%;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
}

.description p{
    margin: 20px 0px 0px 20px;
    font-weight: 500;
    width: 40%;
}

.description p span{
    font-weight: 600;
    color: aquamarine;
}

.contacts{
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
}

/*.contacts .socio{
    margin-right: 10px;
    color: aquamarine;
    font-size: 15px;
    width:30px;
    height: 50px;
}*/
.contacts img{
    margin-right: 25px;
    width: 30px;
}

.contacts img:hover{
    background: aqua;
}
/* main | navigationbar style sheet */

.navbar{
    
    font-weight: 600;
    color: aqua;
    display: flex;
    flex-direction: row;
}

.navbar li{
    list-style: none;
    padding-right: 40px;
    padding-left: 20px;
}
/* content style section*/
.content{
    margin: 10px 20px 10px 20px;
    background: #424141;
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
}
/*designs html structure on main tag*/
.designs{
    margin-left: 20px;
    margin-right:20px;
}

.designs h2{
    color: aqua;
}
.designs h3{
    color:aquamarine;
}
.designs .box{
    height: 200px;
    width: 200px;
    background: #424141;
    margin: 5px;
}
.designs .box .details{
    display: flex;
    flex-direction: column;
    position: relative;
    left: 110px;
    bottom: 0px;
}
.product{
    display: flex;
    flex-wrap: wrap;
}


