body{
margin:0;
font-family: 'Ubuntu', sans-serif;
background:#f9f9f9;
padding-top:250px;
}
#panel{
width:70%;
margin:0 auto;
text-align:center;
}
#tick{
font-size:100px;
color:green;
animation-name:rotator;
animation-duration: 2s;
transform:rotateY(360deg);
transition:2s;
}
@keyframes rotator
{
0%{
transform:rotateY(0deg);
}
100%{
transform:rotateY(360deg);
}
}
#panel p{
margin:5px;
font-size:30px;
}

#panel p2{
margin:5px;
font-size:20px;
}
#navbar{
width:100%;
height:70px;
background:white;
display:flex;
position:fixed;
top:0;
z-index:20;
}

#navbar li{
float:left;
display:block;
margin:23px;
}
#menuset{
float:left;
}
#logocase{
display:flex;
justify-content:left;
}
#logo{
width:150px;
margin:10px;
}

a{
color:black;
font-size:14px;
}

#count{
background:black;
color:white;
width:20px;
height:20px;
border-radius:120px;
font-size:15px;
z-index:10;
float:right;
margin-top:-25px;
}
#overicon{
position:fixed;
right:5px;
top:10px;
text-align: center;
border-radius:180px;
background:grey;
height:50px;
width:50px;
}
#cart{
position:relative;
top:12px;
color:white;
font-size:20px;
}
#signature{
position:fixed;
bottom:0;
right:0;
width:125px;
z-index: 10000;
}


@media Screen and (max-width:700px)
{
    #menuset{
        display:none;
    }
}