*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.image-style {
    width: 200px;
    height: auto;
}
.animation-rotateIn {
    animation-name: rotateIn;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}
@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
}

.myimg{
  width:300px;
  height:300px;
  object-fit:cover;
  border-radius:50%;
}
body{
  font-family: "Poppins", sans-serif;
 }

.navbar{
display: flex;
align-items: center;
padding: 20px;
min-width: 30px
}
nav{
flex: 1;
text-align: right;
}
nav ul{
display: inline-block;
list-style-type: none;
}
nav ul li{
display: inline-block;
margin-right: 20px;
}
a{
text-decoration: none;
color: #555;
}
p{
color: #555;
}
.container{
max-width: 1300px;
margin: auto;
padding-left: 25px;
padding-right: 25px;
}
.row{
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-around;
}
.col-2{
flex-basis: 50%;
min-width: 300px;
}
.col-2 img{
max-width: 100%;
padding: 50px 0;
}
.col-2 h1{
font-size: 50px;
line-height: 60px;
margin: 25px 0;
}
.btn{
display: inline-block;
background-color: #b9842f;
color: #fff;
padding: 15px 30px;
margin: 25px 0;
boder: none;
font-size: 25px;
text-align: center;
transition: background 0.5s;
}
.btn:hover{
background: #544789;

.catagories{
margin: 70px 0;
}
.col-3{
flex-basis: 50%;
min-width: 200px;
margin-botom: 30px;
transition: transform 0.5s;
}
.col-3 img{
width: 100%;
}
.small container{
max-width: 1080px;
margin: auto;
padding-left: 25px;
pading-right: 25px;
}
.col-3:hover{
transform: translateY(-5px);
}
.menu-icon{
width: 38px;
mergin-left: 20px;
}
@media only screen and (max-width: 800px){

nav ul{
position: absolute;
top: 70px;
left: 0;
background: #333;
width: 100%;
overflow: hidden;
transition: max-height 0.5;
}
nav ul li{
display: block;
margin-right: 50px;
margin-top: 10px;
margin-bottom: 10px;
}
nav ul li a{
color: #fff;
}