*{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

.topLogo {
    background-color: #000;
}

.topLogo a {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
}

.topLogo a img {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
}

nav{
    background-color: #ffc0cb;
    display: grid;
    place-content: center;
}

nav ul{
    list-style-type: none;
}

nav ul a{
    display: inline-block;
    padding: 20px;
    text-decoration: none;
    color: #555;
    transition: 0.2s ease-in;
    font-size: 18px;   
}

nav ul a:hover {
    color: #222;
}

/* nav ul a:hover{
    background-color: #f0f;
    color: wheat;
} */

.items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 100px 25px;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
}

.item .itemImg {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: .4s ease;
}

.item img:hover {
    transform: scale(1.2);
}

.item h4 {
    padding: 5px;
    text-align:  center;
}

.item a {
    text-decoration: none;
    width: 120px;
    text-align: center;
    padding: 5px 30px;
    border: none;
    outline: none;
    background-color: #f3a9b4;
    color: #222;
    cursor: pointer;
    border-radius: 4px;
    font-size: 20px;
    display: block;
    margin: 0 auto;
    transition: .2s all;
}

.item a:hover {
    transform: scale(1.08);
}

@media screen and (max-width: 1000px) {
    .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .items {
        grid-template-columns: repeat(1, 1fr);
    }
}

main {
    margin: 0 auto;
    max-width: 1500px;
}

footer{
    background: pink;
    height: auto;
    padding-top: 40px;
    color: #fff;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3{
    font-size: 2.1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 3rem;
}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
    color: #222;
}

.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li{
    margin: 0 10px;
}

.socials a{
    text-decoration: none;
    color: #000;
    border: 1.1px solid #000;
    padding:7px 5px 5px 5px;
    border-radius: 50%;
}

.socials a i{
    font-size: 1.1rem;
    width: 20px;
    transition: color .4s ease;
}

.socials a:hover i{
    color: #ff59e2;
}

.footer-bottom{
    background: #000;
    padding: 20px;
 
}

.footer-bottom div {
    margin: 0 auto;
width:100%;
    max-width: 1500px;
text-align:center;
}

.footer-bottom p{
    float: none;
    font-size: 14px;
    text-transform: capitalize;
}

.footer-bottom p a{
    color:#44bae8;
    font-size: 16px;
    text-decoration: none;
}

.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}