@font-face {
  font-family: "IRANSans";
  font-style: normal;
  font-weight: 700;
  src: url('fonts/iransans/IRANSansWeb_Bold_FaNum.eot');
  src: url('fonts/iransans/IRANSansWeb_Bold_FaNum.eot?#iefix') format('embedded-opentype') /* IE6-8 */,
    url('fonts/iransans/IRANSansWeb_Bold_FaNum.woff2') format('woff2') /* FF39+,Chrome36+, Opera24+*/,
    url('fonts/iransans/IRANSansWeb_Bold_FaNum.woff') format('woff') /* FF3.6+, IE9, Chrome6+, Saf5.1+*/,
    url('fonts/iransans/IRANSansWeb_Bold_FaNum.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #eee;
    min-height: 100vh;
    overflow: hidden;
    font-family: "IRANSans", tahoma;
}

.transition {
  transition: all .5s;
}

/* .bg {
    background: url('../petshop.jpg') no-repeat center center;
    background-size: cover;
} */

h1 {
    font-size: 2rem;
    margin: 0 auto 30px;
}

.wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    animation: animate 10s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    margin-top: -40px;
}

.logo {
    background: #011384;
    padding: 5px;
}
.logo img {
    height: 30px;
}

.items {
    gap: 30px;
}
.item {
    max-width: 500px;
}
.items img {
   border-radius: 20px;
   border: 5px solid #fff;
}
.items .title {
   margin: 10px auto 0px;
   text-align: center;
   font-size: 1.4rem;
}

.item:hover {
    transform: scale(1.05);
}