@media (min-width: 280px) and (max-width: 500px) {
    .center-wrapper {
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        /* Horizontal center */
        align-items: center;
        /* Vertical center */
        margin-top: 0;
    }

    .center-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 500px) and (max-width: 700px) {
    .center-wrapper {
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        /* Horizontal center */
        align-items: center;
        /* Vertical center */
        margin-top: 0;
    }

    .center-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
}
.footer-widget__social-box a {
  margin-right: 10px;
  font-size: 20px;
  color: #333;
  transition: 0.3s;
}
.fb:hover{
    color: blue;
}
.insta:hover{
    color: red;
}
.you:hover{
    color: red;
}