*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    display: flex;
    justify-content: space-between;
    background-color: #B18DE1;
    padding: 40px;
    font-size: 35px;
    color: white;
}
.right-info{
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 55px;
}
a{
    text-decoration: none;
    color: white;
}
.box{
    color: white;
    font-size: 22px;
}
#meow{
    margin-right: auto;
    font-size: 30px;
}
.container{
    display: grid;
    padding: 40px;
    justify-content: center;
    grid-template-columns: repeat(auto-fit,270px);
    gap: 30px;
    grid-auto-rows: 400px;
}
.photo img{
    height: 260px;
    width: 220px;
    object-fit :cover;
    border-radius: 15px;
}
p{
    text-align: center;
}
.item{
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #C3E1C2;
    color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.229);
}
.item:hover{
    box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.329);
    transition: 0.3s;
}
.photo{
    display: flex;
    justify-content: center;
    height: 260px;
    width: 260px;
    overflow: hidden;
}
@media(max-width:56em){
    header{
    display: flex;
    justify-content: center;
    background-color: #B18DE1;
    padding: 40px;
    font-size: 35px;
    color: white;
    }
    .right-info{
        display: none;
    }
}
