#design{
    background-image: radial-gradient(rgba(57, 189, 255,0.90),  rgba(0, 145, 255, 0.90));
    width: 100%;
    max-width: 350px;
    height: 350px;
    border-radius: 50%;
    transition: 0.8s;
    box-shadow: 0 10px 20px rgba(148, 148, 148, 0.19), 0 6px 6px rgba(187, 187, 187, 0.23);
}

#design:hover{
    border-radius: 0%;
    transition: 0.8s
}
#s1{
    transition: 0.6s;
    width: 33%;
    margin-top: 13%;
	 border-radius: 0%;
	 
}


.space
{
	padding-bottom:5px;
}

#s2{
    transition: 0.6s;
    width: 40%;
    margin-top: 13%;
	 border-radius: 0%;
	 
}

#s3{
    transition: 0.6s;
    width: 40%;
    margin-top: 13%;
	 border-radius: 0%;
	 
}

#s4{
    transition: 0.6s;
    width: 40%;
    margin-top: 13%;
	 border-radius: 0%;
	 
}

#s5{
    transition: 0.6s;
    width: 40%;
    margin-top: 13%;
	 border-radius: 0%;
	 
}

#s6{
    transition: 0.6s;
    width: 40%;
    margin-top: 13%;
	 border-radius: 0%;
	 
}


#design:hover #s1{
    margin-top: 66%;
    transform: scale(0.7);
   
    transition: 0.6s;
}
#text  {
    width: 80%;
    position: absolute;
    top: 8%;
    left: 10%;
    color: white;
    display: none;
    transition: 0.8s;
    opacity: 0;
    text-align:center;
}
#design:hover #text{
display: block;
transition: 0.8s;
opacity: 1;
animation: display 1s;
}
@keyframes display{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
#title{
    transition-delay: 0.8s;
    display: block;
	margin-top:3%;
}
#design:hover #title{
    display: none;
   
}